Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bddcbb78 authored by Ashwini Oruganti's avatar Ashwini Oruganti
Browse files

SoundPicker: Add an exported flag in manifest

With b/150232615, we will need an explicit value set for the exported
flag when intent filters are present, as the default behavior is
changing for S+. This change adds the value reflecting the previous
default to the manifest.

Bug: 150232615
Test: TH
Change-Id: Id471a7a92e16ba286da9ca41ee214f96add556c5
parent 72fcef13
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -12,7 +12,8 @@
    <application
            android:allowBackup="false"
            android:supportsRtl="true">
        <receiver android:name="RingtoneReceiver">
        <receiver android:name="RingtoneReceiver"
                android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.DEVICE_CUSTOMIZATION_READY"/>
            </intent-filter>
@@ -23,7 +24,8 @@
        <activity android:name="RingtonePickerActivity"
                android:theme="@style/PickerDialogTheme"
                android:enabled="@*android:bool/config_defaultRingtonePickerEnabled"
                android:excludeFromRecents="true">
                android:excludeFromRecents="true"
                android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.RINGTONE_PICKER" />
                <category android:name="android.intent.category.DEFAULT" />