blob: 997dae7d08f556aa44a26d50a9a73d2e4dff57cf [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" />
<receiver android:name="androidx.profileinstaller.ProfileInstallReceiver"
tools:node="remove" />
</application>
</manifest>