blob: 960e5badab87ccaad9e17818ddc88c6016d383ef [file] [log] [blame]
Jeff Sharkey56c34e82019-11-21 15:56:37 -07001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 package="com.android.providers.media"
3 android:sharedUserId="android.media">
4
5 <!-- This "legacy" instance is retained on the device to preserve the
6 database contents before MediaProvider was migrated into a
7 Mainline module. This ensures that we can reconstruct information
8 such as IDs and other user-generated content. -->
9
10 <application
Jeff Sharkey56c34e82019-11-21 15:56:37 -070011 android:process="android.process.media"
12 android:allowBackup="false"
13 android:supportsRtl="true"
Patrick Baumann7a2f8f32020-02-07 15:11:21 -080014 android:forceQueryable="true"
Jeff Sharkey56c34e82019-11-21 15:56:37 -070015 android:usesCleartextTraffic="true">
16 <provider
Jeff Sharkeyc55994b2019-12-20 19:43:59 -070017 android:name="com.android.providers.media.LegacyMediaProvider"
Jeff Sharkey56c34e82019-11-21 15:56:37 -070018 android:authorities="media_legacy"
19 android:exported="true"
20 android:permission="android.permission.WRITE_MEDIA_STORAGE" />
21 </application>
22</manifest>