AndroidManifest.xml revision 1f4df90bfab8ca42eabe95f19eadff3432eee7fd
1<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2        package="com.android.providers.settings"
3        android:sharedUserId="android.uid.system">
4
5    <application android:allowClearUserData="false"
6                 android:label="@string/app_label"
7                 android:process="system"
8                 android:backupAgent="SettingsBackupAgent"
9                 android:killAfterRestore="false"
10                 android:icon="@drawable/ic_launcher_settings">
11
12        <provider android:name="SettingsProvider" android:authorities="settings"
13                  android:multiprocess="false"
14                  android:writePermission="android.permission.WRITE_SETTINGS"
15                  android:initOrder="100" />
16    </application>
17</manifest>
18