2009-03-03 19:31:44 -08:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.android.providers.settings"
|
2011-09-12 12:29:43 -07:00
|
|
|
coreApp="true"
|
2009-03-03 19:31:44 -08:00
|
|
|
android:sharedUserId="android.uid.system">
|
|
|
|
|
|
|
|
<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"
|
2010-02-16 20:38:49 -08:00
|
|
|
android:icon="@drawable/ic_launcher_settings">
|
|
|
|
|
|
|
|
<!-- todo add: 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>
|