Jeff Sharkey | 56c34e8 | 2019-11-21 15:56:37 -0700 | [diff] [blame] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Alan Viverette | b973164 | 2021-08-30 15:18:24 +0000 | [diff] [blame] | 2 | xmlns:tools="http://schemas.android.com/tools" |
Jeff Sharkey | 56c34e8 | 2019-11-21 15:56:37 -0700 | [diff] [blame] | 3 | package="com.android.providers.media" |
Corina | ef7ef31 | 2020-07-01 10:30:37 +0100 | [diff] [blame] | 4 | android:sharedUserId="android.media" |
| 5 | android:versionCode="1024"> |
Jeff Sharkey | 56c34e8 | 2019-11-21 15:56:37 -0700 | [diff] [blame] | 6 | |
| 7 | <!-- This "legacy" instance is retained on the device to preserve the |
| 8 | database contents before MediaProvider was migrated into a |
| 9 | Mainline module. This ensures that we can reconstruct information |
| 10 | such as IDs and other user-generated content. --> |
| 11 | |
| 12 | <application |
Jeff Sharkey | 56c34e8 | 2019-11-21 15:56:37 -0700 | [diff] [blame] | 13 | android:process="android.process.media" |
| 14 | android:allowBackup="false" |
| 15 | android:supportsRtl="true" |
Patrick Baumann | 7a2f8f3 | 2020-02-07 15:11:21 -0800 | [diff] [blame] | 16 | android:forceQueryable="true" |
Jeff Sharkey | 56c34e8 | 2019-11-21 15:56:37 -0700 | [diff] [blame] | 17 | android:usesCleartextTraffic="true"> |
| 18 | <provider |
Jeff Sharkey | c55994b | 2019-12-20 19:43:59 -0700 | [diff] [blame] | 19 | android:name="com.android.providers.media.LegacyMediaProvider" |
Jeff Sharkey | 56c34e8 | 2019-11-21 15:56:37 -0700 | [diff] [blame] | 20 | android:authorities="media_legacy" |
| 21 | android:exported="true" |
| 22 | android:permission="android.permission.WRITE_MEDIA_STORAGE" /> |
Alan Viverette | b973164 | 2021-08-30 15:18:24 +0000 | [diff] [blame] | 23 | |
| 24 | <!-- (b/197891819) Remove startup provider due to resource loading issues. --> |
| 25 | <provider |
| 26 | android:name="androidx.startup.InitializationProvider" |
| 27 | android:authorities="${applicationId}.androidx-startup" |
| 28 | tools:node="remove" /> |
Jeff Sharkey | 56c34e8 | 2019-11-21 15:56:37 -0700 | [diff] [blame] | 29 | </application> |
| 30 | </manifest> |