blob: 79677eeac42961b0f12c5c481e39251d5b97f12c [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
Julia Reynolds027bcd92021-12-06 18:11:24 +00006 <uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
Winson Chiu9efbc132022-09-30 17:51:20 +00007 <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
Julia Reynolds027bcd92021-12-06 18:11:24 +00008
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009 <application android:allowClearUserData="false"
Eric Fischerf204ab32009-06-17 15:17:29 -070010 android:label="@string/app_label"
Amith Yamasani344bf682009-07-02 14:25:21 -070011 android:process="system"
-b master501eec92009-07-06 13:53:11 -070012 android:backupAgent="SettingsBackupAgent"
Christopher Tate5e1ab332009-09-01 20:32:49 -070013 android:killAfterRestore="false"
Michal Karpinski6517d882018-01-08 15:23:03 +000014 android:restoreAnyVersion="true"
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -080015 android:icon="@mipmap/ic_launcher_settings"
Jeff Sharkey8a372a02016-03-16 16:25:45 -060016 android:defaultToDeviceProtectedStorage="true"
Patrick Baumann3d5bb942019-08-08 08:16:28 -070017 android:forceQueryable="true"
Jeff Sharkey8a372a02016-03-16 16:25:45 -060018 android:directBootAware="true">
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080019
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -080020 <provider android:name="SettingsProvider"
21 android:authorities="settings"
Amith Yamasani344bf682009-07-02 14:25:21 -070022 android:multiprocess="false"
Nick Kralevich45576cc2012-07-28 12:45:05 -070023 android:exported="true"
Nicolas Prevot114e8992014-08-22 12:03:59 +010024 android:singleUser="true"
Chad Brubaker5bd21e92017-03-09 13:07:36 -080025 android:initOrder="100"
26 android:visibleToInstantApps="true" />
Songchun Fance18c5e2020-04-09 16:22:35 -070027
28 <service
29 android:name="WriteFallbackSettingsFilesJobService"
30 android:permission="android.permission.BIND_JOB_SERVICE"
31 android:exported="true"/>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032 </application>
33</manifest>