blob: 15349b1a0f86a199c75cd08e2e30bdd2cce9c702 [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"
14 android:usesCleartextTraffic="true">
15 <provider
Jeff Sharkeyc55994b2019-12-20 19:43:59 -070016 android:name="com.android.providers.media.LegacyMediaProvider"
Jeff Sharkey56c34e82019-11-21 15:56:37 -070017 android:authorities="media_legacy"
18 android:exported="true"
19 android:permission="android.permission.WRITE_MEDIA_STORAGE" />
20 </application>
21</manifest>