Any package can now participate in backup/restore, without requiring any manifest-declared permission. *Control* of the backup manager is still guarded by the BACKUP permission, which is signatureOrSystem. Change-Id: I116fcfcd4cd255e3c976330da1c4dea7d4faae9d
19 lines
816 B
XML
19 lines
816 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: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>
|