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" |
| 3 | android:sharedUserId="android.uid.system"> |
| 4 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 5 | <application android:allowClearUserData="false" |
Eric Fischer | f204ab3 | 2009-06-17 15:17:29 -0700 | [diff] [blame] | 6 | android:label="@string/app_label" |
-b master | 501eec9 | 2009-07-06 13:53:11 -0700 | [diff] [blame^] | 7 | android:backupAgent="SettingsBackupAgent" |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 8 | android:icon="@drawable/ic_launcher_settings"> |
| 9 | |
| 10 | <provider android:name="SettingsProvider" android:authorities="settings" |
| 11 | android:process="system" android:multiprocess="false" |
| 12 | android:writePermission="android.permission.WRITE_SETTINGS" |
| 13 | android:initOrder="100" /> |
| 14 | </application> |
| 15 | </manifest> |