blob: e5f52e24e8074f076de963b24f7761b44db05b60 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 package="com.android.providers.settings"
3 android:sharedUserId="android.uid.system">
4
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005 <application android:allowClearUserData="false"
Eric Fischerf204ab32009-06-17 15:17:29 -07006 android:label="@string/app_label"
Amith Yamasani344bf682009-07-02 14:25:21 -07007 android:process="system"
-b master501eec92009-07-06 13:53:11 -07008 android:backupAgent="SettingsBackupAgent"
Christopher Tate4a627c72011-04-01 14:43:32 -07009 android:fullBackupAgent="SettingsBackupAgent"
Christopher Tate5e1ab332009-09-01 20:32:49 -070010 android:killAfterRestore="false"
Dianne Hackbornef6b22f2010-02-16 20:38:49 -080011 android:icon="@drawable/ic_launcher_settings">
12
13 <!-- todo add: android:neverEncrypt="true" -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080014
15 <provider android:name="SettingsProvider" android:authorities="settings"
Amith Yamasani344bf682009-07-02 14:25:21 -070016 android:multiprocess="false"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080017 android:writePermission="android.permission.WRITE_SETTINGS"
18 android:initOrder="100" />
19 </application>
20</manifest>