2009-03-03 19:31:44 -08:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.android.providers.settings"
|
|
|
|
android:sharedUserId="android.uid.system">
|
|
|
|
|
2009-08-13 15:13:03 -07:00
|
|
|
<uses-permission android:name="android.permission.BACKUP_DATA" />
|
|
|
|
|
2009-03-03 19:31:44 -08:00
|
|
|
<application android:allowClearUserData="false"
|
2009-06-17 15:17:29 -07:00
|
|
|
android:label="@string/app_label"
|
2009-07-02 14:25:21 -07:00
|
|
|
android:process="system"
|
2009-07-06 13:53:11 -07:00
|
|
|
android:backupAgent="SettingsBackupAgent"
|
2009-09-01 20:32:49 -07:00
|
|
|
android:killAfterRestore="false"
|
2009-11-18 10:14:20 -08:00
|
|
|
android:icon="@drawable/ic_launcher_settings"
|
|
|
|
android:neverEncrypt="true">
|
2009-03-03 19:31:44 -08:00
|
|
|
|
|
|
|
<provider android:name="SettingsProvider" android:authorities="settings"
|
2009-07-02 14:25:21 -07:00
|
|
|
android:multiprocess="false"
|
2009-03-03 19:31:44 -08:00
|
|
|
android:writePermission="android.permission.WRITE_SETTINGS"
|
|
|
|
android:initOrder="100" />
|
|
|
|
</application>
|
|
|
|
</manifest>
|