| Ahmad Khalil | ce0f9c0 | 2023-09-29 10:49:04 +0000 | [diff] [blame] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | package="com.android.soundpicker" |
| 3 | android:sharedUserId="android.media"> |
| 4 | |
| 5 | <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> |
| 6 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 7 | |
| 8 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
| 9 | <uses-permission android:name="android.permission.RECEIVE_DEVICE_CUSTOMIZATION_READY" /> |
| 10 | <uses-permission android:name="android.permission.WRITE_SETTINGS" /> |
| 11 | |
| 12 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" /> |
| 13 | |
| 14 | <application |
| 15 | android:name=".RingtonePickerApplication" |
| 16 | android:allowBackup="false" |
| 17 | android:label="@string/app_label" |
| 18 | android:theme="@style/Theme.AppCompat" |
| 19 | android:supportsRtl="true"> |
| 20 | <receiver android:name="RingtoneReceiver" |
| 21 | android:exported="true"> |
| 22 | <intent-filter> |
| 23 | <action android:name="android.intent.action.DEVICE_CUSTOMIZATION_READY"/> |
| 24 | </intent-filter> |
| 25 | </receiver> |
| 26 | |
| 27 | <service android:name="RingtoneOverlayService" /> |
| 28 | |
| 29 | <activity android:name="RingtonePickerActivity" |
| 30 | android:theme="@style/Theme.AppCompat.Dialog" |
| 31 | android:enabled="@*android:bool/config_defaultRingtonePickerEnabled" |
| 32 | android:excludeFromRecents="true" |
| 33 | android:exported="true"> |
| 34 | <intent-filter> |
| 35 | <action android:name="android.intent.action.RINGTONE_PICKER" /> |
| 36 | <category android:name="android.intent.category.DEFAULT" /> |
| 37 | <category android:name="android.intent.category.RINGTONE_PICKER_SOUND" /> |
| 38 | <category android:name="android.intent.category.RINGTONE_PICKER_VIBRATION" /> |
| 39 | <category android:name="android.intent.category.RINGTONE_PICKER_RINGTONE" /> |
| 40 | </intent-filter> |
| 41 | </activity> |
| 42 | </application> |
| 43 | </manifest> |