1<manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 package="com.android.providers.media" 3 android:sharedUserId="android.media" 4 android:versionCode="1024"> 5 6 <!-- This "legacy" instance is retained on the device to preserve the 7 database contents before MediaProvider was migrated into a 8 Mainline module. This ensures that we can reconstruct information 9 such as IDs and other user-generated content. --> 10 11 <application 12 android:process="android.process.media" 13 android:allowBackup="false" 14 android:supportsRtl="true" 15 android:forceQueryable="true" 16 android:usesCleartextTraffic="true"> 17 <provider 18 android:name="com.android.providers.media.LegacyMediaProvider" 19 android:authorities="media_legacy" 20 android:exported="true" 21 android:permission="android.permission.WRITE_MEDIA_STORAGE" /> 22 </application> 23</manifest> 24