blob: 2f7ea971aaba4b2f08eee99c7e0da1de6901ca02 [file] [log] [blame]
Jeff Sharkey56c34e82019-11-21 15:56:37 -07001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Alan Viveretteb9731642021-08-30 15:18:24 +00002 xmlns:tools="http://schemas.android.com/tools"
Jeff Sharkey56c34e82019-11-21 15:56:37 -07003 package="com.android.providers.media"
Corinaef7ef312020-07-01 10:30:37 +01004 android:sharedUserId="android.media"
5 android:versionCode="1024">
Jeff Sharkey56c34e82019-11-21 15:56:37 -07006
7 <!-- This "legacy" instance is retained on the device to preserve the
8 database contents before MediaProvider was migrated into a
9 Mainline module. This ensures that we can reconstruct information
10 such as IDs and other user-generated content. -->
11
12 <application
Jeff Sharkey56c34e82019-11-21 15:56:37 -070013 android:process="android.process.media"
14 android:allowBackup="false"
15 android:supportsRtl="true"
Patrick Baumann7a2f8f32020-02-07 15:11:21 -080016 android:forceQueryable="true"
Jeff Sharkey56c34e82019-11-21 15:56:37 -070017 android:usesCleartextTraffic="true">
18 <provider
Jeff Sharkeyc55994b2019-12-20 19:43:59 -070019 android:name="com.android.providers.media.LegacyMediaProvider"
Jeff Sharkey56c34e82019-11-21 15:56:37 -070020 android:authorities="media_legacy"
21 android:exported="true"
22 android:permission="android.permission.WRITE_MEDIA_STORAGE" />
Alan Viveretteb9731642021-08-30 15:18:24 +000023
24 <!-- (b/197891819) Remove startup provider due to resource loading issues. -->
25 <provider
26 android:name="androidx.startup.InitializationProvider"
27 android:authorities="${applicationId}.androidx-startup"
28 tools:node="remove" />
Jeff Sharkey56c34e82019-11-21 15:56:37 -070029 </application>
30</manifest>