You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1012 B
24 lines
1012 B
7 months ago
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
package="com.android.providers.media"
|
||
|
android:sharedUserId="android.media"
|
||
|
android:versionCode="1024">
|
||
|
|
||
|
<!-- This "legacy" instance is retained on the device to preserve the
|
||
|
database contents before MediaProvider was migrated into a
|
||
|
Mainline module. This ensures that we can reconstruct information
|
||
|
such as IDs and other user-generated content. -->
|
||
|
|
||
|
<application
|
||
|
android:process="android.process.media"
|
||
|
android:allowBackup="false"
|
||
|
android:supportsRtl="true"
|
||
|
android:forceQueryable="true"
|
||
|
android:usesCleartextTraffic="true">
|
||
|
<provider
|
||
|
android:name="com.android.providers.media.LegacyMediaProvider"
|
||
|
android:authorities="media_legacy"
|
||
|
android:exported="true"
|
||
|
android:permission="android.permission.WRITE_MEDIA_STORAGE" />
|
||
|
</application>
|
||
|
</manifest>
|