Home | History | Annotate | Download | only in SettingsProvider
      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:icon="@mipmap/ic_launcher_settings"
     12                  android:defaultToDeviceProtectedStorage="true"
     13                  android:directBootAware="true">
     14 
     15         <provider android:name="SettingsProvider"
     16                   android:authorities="settings"
     17                   android:multiprocess="false"
     18                   android:exported="true"
     19                   android:singleUser="true"
     20                   android:initOrder="100"
     21                   android:visibleToInstantApps="true" />
     22     </application>
     23 </manifest>
     24