1<manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 package="com.android.bluetooth" 3 android:sharedUserId="android.uid.bluetooth"> 4 5 <!-- This "legacy" instance is retained on the device to preserve the 6 database contents before Bluetooth was migrated into a Mainline module. 7 This ensures that we can migrate information to new folder app --> 8<application 9 android:icon="@mipmap/bt_share" 10 android:allowBackup="false" 11 android:label="Bluetooth Legacy"> 12 <provider 13 android:name="com.google.android.bluetooth.BluetoothLegacyMigration" 14 android:authorities="bluetooth_legacy.provider" 15 android:directBootAware="true" 16 android:exported="false" 17 android:permission="android.permission.BLUETOOTH_PRIVILEGED" 18 /> 19 </application> 20</manifest> 21