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" |
Michal Karpinski | 6517d88 | 2018-01-08 15:23:03 +0000 | [diff] [blame] | 11 | android:restoreAnyVersion="true" |
Jeff Sharkey | f9fc6d6 | 2015-11-08 16:46:05 -0800 | [diff] [blame] | 12 | android:icon="@mipmap/ic_launcher_settings" |
Jeff Sharkey | 8a372a0 | 2016-03-16 16:25:45 -0600 | [diff] [blame] | 13 | android:defaultToDeviceProtectedStorage="true" |
Patrick Baumann | 3d5bb94 | 2019-08-08 08:16:28 -0700 | [diff] [blame] | 14 | android:forceQueryable="true" |
Jeff Sharkey | 8a372a0 | 2016-03-16 16:25:45 -0600 | [diff] [blame] | 15 | android:directBootAware="true"> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 16 | |
Jeff Sharkey | f9fc6d6 | 2015-11-08 16:46:05 -0800 | [diff] [blame] | 17 | <provider android:name="SettingsProvider" |
| 18 | android:authorities="settings" |
Amith Yamasani | 344bf68 | 2009-07-02 14:25:21 -0700 | [diff] [blame] | 19 | android:multiprocess="false" |
Nick Kralevich | 45576cc | 2012-07-28 12:45:05 -0700 | [diff] [blame] | 20 | android:exported="true" |
Nicolas Prevot | 114e899 | 2014-08-22 12:03:59 +0100 | [diff] [blame] | 21 | android:singleUser="true" |
Chad Brubaker | 5bd21e9 | 2017-03-09 13:07:36 -0800 | [diff] [blame] | 22 | android:initOrder="100" |
| 23 | android:visibleToInstantApps="true" /> |
Songchun Fan | ce18c5e | 2020-04-09 16:22:35 -0700 | [diff] [blame] | 24 | |
| 25 | <service |
| 26 | android:name="WriteFallbackSettingsFilesJobService" |
| 27 | android:permission="android.permission.BIND_JOB_SERVICE" |
| 28 | android:exported="true"/> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 29 | </application> |
| 30 | </manifest> |