The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | package="com.android.providers.settings" |
Dianne Hackborn | d2509fd | 2011-09-12 12:29:43 -0700 | [diff] [blame] | 3 | coreApp="true" |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 4 | android:sharedUserId="android.uid.system"> |
| 5 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 6 | <application android:allowClearUserData="false" |
Eric Fischer | f204ab3 | 2009-06-17 15:17:29 -0700 | [diff] [blame] | 7 | android:label="@string/app_label" |
Amith Yamasani | 344bf68 | 2009-07-02 14:25:21 -0700 | [diff] [blame] | 8 | android:process="system" |
-b master | 501eec9 | 2009-07-06 13:53:11 -0700 | [diff] [blame] | 9 | android:backupAgent="SettingsBackupAgent" |
Christopher Tate | 5e1ab33 | 2009-09-01 20:32:49 -0700 | [diff] [blame] | 10 | android:killAfterRestore="false" |
Amith Yamasani | 8292342e | 2013-10-14 15:24:31 -0700 | [diff] [blame] | 11 | android:icon="@mipmap/ic_launcher_settings"> |
Dianne Hackborn | ef6b22f | 2010-02-16 20:38:49 -0800 | [diff] [blame] | 12 | |
| 13 | <!-- todo add: android:neverEncrypt="true" --> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 14 | |
| 15 | <provider android:name="SettingsProvider" android:authorities="settings" |
Amith Yamasani | 344bf68 | 2009-07-02 14:25:21 -0700 | [diff] [blame] | 16 | android:multiprocess="false" |
Nick Kralevich | 45576cc | 2012-07-28 12:45:05 -0700 | [diff] [blame] | 17 | android:exported="true" |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 18 | android:writePermission="android.permission.WRITE_SETTINGS" |
| 19 | android:initOrder="100" /> |
| 20 | </application> |
| 21 | </manifest> |