blob: 469b776064fc2f3401cf1c13bf3ef7023d989aa2 [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"
Amith Yamasani8292342e2013-10-14 15:24:31 -070011 android:icon="@mipmap/ic_launcher_settings">
Dianne Hackbornef6b22f2010-02-16 20:38:49 -080012
13 <!-- todo add: android:neverEncrypt="true" -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080014
15 <provider android:name="SettingsProvider" android:authorities="settings"
Amith Yamasani344bf682009-07-02 14:25:21 -070016 android:multiprocess="false"
Nick Kralevich45576cc2012-07-28 12:45:05 -070017 android:exported="true"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080018 android:writePermission="android.permission.WRITE_SETTINGS"
Nicolas Prevot114e8992014-08-22 12:03:59 +010019 android:singleUser="true"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080020 android:initOrder="100" />
21 </application>
22</manifest>