blob: 2f7ea971aaba4b2f08eee99c7e0da1de6901ca02 [file] [log] [blame]
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
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" />
<!-- (b/197891819) Remove startup provider due to resource loading issues. -->
<provider
android:name="androidx.startup.InitializationProvider"
android:authorities="${applicationId}.androidx-startup"
tools:node="remove" />
</application>
</manifest>