21 lines
887 B
XML
21 lines
887 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.providers.settings"
|
|
android:sharedUserId="android.uid.system">
|
|
|
|
<uses-permission android:name="android.permission.BACKUP_DATA" />
|
|
|
|
<application android:allowClearUserData="false"
|
|
android:label="@string/app_label"
|
|
android:process="system"
|
|
android:backupAgent="SettingsBackupAgent"
|
|
android:killAfterRestore="false"
|
|
android:icon="@drawable/ic_launcher_settings"
|
|
android:neverEncrypt="true">
|
|
|
|
<provider android:name="SettingsProvider" android:authorities="settings"
|
|
android:multiprocess="false"
|
|
android:writePermission="android.permission.WRITE_SETTINGS"
|
|
android:initOrder="100" />
|
|
</application>
|
|
</manifest>
|