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" |
Jeff Sharkey | f9fc6d6 | 2015-11-08 16:46:05 -0800 | [diff] [blame] | 11 | android:icon="@mipmap/ic_launcher_settings" |
Jeff Sharkey | 8a372a0 | 2016-03-16 16:25:45 -0600 | [diff] [blame] | 12 | android:defaultToDeviceProtectedStorage="true" |
| 13 | android:directBootAware="true"> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 14 | |
Jeff Sharkey | f9fc6d6 | 2015-11-08 16:46:05 -0800 | [diff] [blame] | 15 | <provider android:name="SettingsProvider" |
| 16 | android:authorities="settings" |
Amith Yamasani | 344bf68 | 2009-07-02 14:25:21 -0700 | [diff] [blame] | 17 | android:multiprocess="false" |
Nick Kralevich | 45576cc | 2012-07-28 12:45:05 -0700 | [diff] [blame] | 18 | android:exported="true" |
Nicolas Prevot | 114e899 | 2014-08-22 12:03:59 +0100 | [diff] [blame] | 19 | android:singleUser="true" |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 20 | android:initOrder="100" /> |
| 21 | </application> |
| 22 | </manifest> |