blob: 4cbff485e3452d485c7b0cf19035a1226c94d49a [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
11 android:label="@string/app_label"
12 android:process="android.process.media"
13 android:allowBackup="false"
14 android:supportsRtl="true"
15 android:usesCleartextTraffic="true">
16 <provider
17 android:name="com.android.providers.media.MediaProvider"
18 android:authorities="media_legacy"
19 android:exported="true"
20 android:permission="android.permission.WRITE_MEDIA_STORAGE" />
21 </application>
22</manifest>