blob: 04d3f948635476c898bcfa3f468adeb647d20fe1 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 package="com.android.providers.settings"
Dianne Hackbornd2509fd2011-09-12 12:29:43 -07003 coreApp="true"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004 android:sharedUserId="android.uid.system">
5
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006 <application android:allowClearUserData="false"
Eric Fischerf204ab32009-06-17 15:17:29 -07007 android:label="@string/app_label"
Amith Yamasani344bf682009-07-02 14:25:21 -07008 android:process="system"
-b master501eec92009-07-06 13:53:11 -07009 android:backupAgent="SettingsBackupAgent"
Christopher Tate5e1ab332009-09-01 20:32:49 -070010 android:killAfterRestore="false"
Michal Karpinski6517d882018-01-08 15:23:03 +000011 android:restoreAnyVersion="true"
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -080012 android:icon="@mipmap/ic_launcher_settings"
Jeff Sharkey8a372a02016-03-16 16:25:45 -060013 android:defaultToDeviceProtectedStorage="true"
Patrick Baumann3d5bb942019-08-08 08:16:28 -070014 android:forceQueryable="true"
Jeff Sharkey8a372a02016-03-16 16:25:45 -060015 android:directBootAware="true">
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080016
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -080017 <provider android:name="SettingsProvider"
18 android:authorities="settings"
Amith Yamasani344bf682009-07-02 14:25:21 -070019 android:multiprocess="false"
Nick Kralevich45576cc2012-07-28 12:45:05 -070020 android:exported="true"
Nicolas Prevot114e8992014-08-22 12:03:59 +010021 android:singleUser="true"
Chad Brubaker5bd21e92017-03-09 13:07:36 -080022 android:initOrder="100"
23 android:visibleToInstantApps="true" />
Songchun Fance18c5e2020-04-09 16:22:35 -070024
25 <service
26 android:name="WriteFallbackSettingsFilesJobService"
27 android:permission="android.permission.BIND_JOB_SERVICE"
28 android:exported="true"/>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029 </application>
30</manifest>