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                 
13    <!-- todo add: android:neverEncrypt="true" -->
14
15        <provider android:name="SettingsProvider" android:authorities="settings"
16                  android:multiprocess="false"
17                  android:exported="true"
18                  android:singleUser="true"
19                  android:initOrder="100" />
20    </application>
21</manifest>
22