This backs up the basic system and secure settings. THe restoration doesn't take effect immediately. You many need to restart the runtime to see all restored values take effect.
16 lines
704 B
XML
16 lines
704 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.providers.settings"
|
|
android:sharedUserId="android.uid.system">
|
|
|
|
<application android:allowClearUserData="false"
|
|
android:label="@string/app_label"
|
|
android:backupAgent="SettingsBackupAgent"
|
|
android:icon="@drawable/ic_launcher_settings">
|
|
|
|
<provider android:name="SettingsProvider" android:authorities="settings"
|
|
android:process="system" android:multiprocess="false"
|
|
android:writePermission="android.permission.WRITE_SETTINGS"
|
|
android:initOrder="100" />
|
|
</application>
|
|
</manifest>
|