1<manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 package="com.android.providers.settings" 3 coreApp="true" 4 android:sharedUserId="android.uid.system"> 5 6 <application android:allowClearUserData="false" 7 android:label="@string/app_label" 8 android:process="system" 9 android:backupAgent="SettingsBackupAgent" 10 android:killAfterRestore="false" 11 android:restoreAnyVersion="true" 12 android:icon="@mipmap/ic_launcher_settings" 13 android:defaultToDeviceProtectedStorage="true" 14 android:directBootAware="true"> 15 16 <provider android:name="SettingsProvider" 17 android:authorities="settings" 18 android:multiprocess="false" 19 android:exported="true" 20 android:singleUser="true" 21 android:initOrder="100" 22 android:visibleToInstantApps="true" /> 23 </application> 24</manifest> 25