blob: 9374d522707bc6cc4d275e96a3a7d13d55ae3948 [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"
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -080011 android:icon="@mipmap/ic_launcher_settings"
Jeff Sharkey8a372a02016-03-16 16:25:45 -060012 android:defaultToDeviceProtectedStorage="true"
13 android:directBootAware="true">
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080014
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -080015 <provider android:name="SettingsProvider"
16 android:authorities="settings"
Amith Yamasani344bf682009-07-02 14:25:21 -070017 android:multiprocess="false"
Nick Kralevich45576cc2012-07-28 12:45:05 -070018 android:exported="true"
Nicolas Prevot114e8992014-08-22 12:03:59 +010019 android:singleUser="true"
Chad Brubaker5bd21e92017-03-09 13:07:36 -080020 android:initOrder="100"
21 android:visibleToInstantApps="true" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022 </application>
23</manifest>