| 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 | 
| Jeff Sharkey | 56c34e8 | 2019-11-21 15:56:37 -0700 | [diff] [blame] | 11 |             android:process="android.process.media" | 
 | 12 |             android:allowBackup="false" | 
 | 13 |             android:supportsRtl="true" | 
 | 14 |             android:usesCleartextTraffic="true"> | 
 | 15 |         <provider | 
| Jeff Sharkey | c55994b | 2019-12-20 19:43:59 -0700 | [diff] [blame^] | 16 |                 android:name="com.android.providers.media.LegacyMediaProvider" | 
| Jeff Sharkey | 56c34e8 | 2019-11-21 15:56:37 -0700 | [diff] [blame] | 17 |                 android:authorities="media_legacy" | 
 | 18 |                 android:exported="true" | 
 | 19 |                 android:permission="android.permission.WRITE_MEDIA_STORAGE" /> | 
 | 20 |     </application> | 
 | 21 | </manifest> |