Jeff Sharkey | 56c34e8 | 2019-11-21 15:56:37 -0700 | [diff] [blame^] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | package="com.android.providers.media" |
| 3 | android:sharedUserId="android.media"> |
| 4 | |
| 5 | <!-- This "legacy" instance is retained on the device to preserve the |
| 6 | database contents before MediaProvider was migrated into a |
| 7 | Mainline module. This ensures that we can reconstruct information |
| 8 | such as IDs and other user-generated content. --> |
| 9 | |
| 10 | <application |
| 11 | android:label="@string/app_label" |
| 12 | android:process="android.process.media" |
| 13 | android:allowBackup="false" |
| 14 | android:supportsRtl="true" |
| 15 | android:usesCleartextTraffic="true"> |
| 16 | <provider |
| 17 | android:name="com.android.providers.media.MediaProvider" |
| 18 | android:authorities="media_legacy" |
| 19 | android:exported="true" |
| 20 | android:permission="android.permission.WRITE_MEDIA_STORAGE" /> |
| 21 | </application> |
| 22 | </manifest> |