for supported keys RestoreAnyVersion is supported only for K/V, as full backup of SettingsProvider has been deprecated (b/71746093). The supported keys whitelist only contains KEY_WIFI_NEW_CONFIG and KEY_NETWORK_POLICIES for now, and will be extended in future CLs. Bug: 64988620 Test: manual (P->P - master without changes to master with changes) Test: manual (Q->P = API29 -> API28) Test: a lot of other scenarios covered by our end-to-end tests Change-Id: I381617b5db9a33b24d400945cffbc59db78ebbd2
27 lines
1.1 KiB
XML
27 lines
1.1 KiB
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.providers.settings"
|
|
coreApp="true"
|
|
android:sharedUserId="android.uid.system">
|
|
|
|
<application android:allowClearUserData="false"
|
|
android:label="@string/app_label"
|
|
android:process="system"
|
|
android:backupAgent="SettingsBackupAgent"
|
|
android:killAfterRestore="false"
|
|
android:restoreAnyVersion="true"
|
|
android:icon="@mipmap/ic_launcher_settings"
|
|
android:defaultToDeviceProtectedStorage="true"
|
|
android:directBootAware="true">
|
|
<uses-library android:name="android.test.runner" />
|
|
|
|
|
|
<provider android:name="SettingsProvider"
|
|
android:authorities="settings"
|
|
android:multiprocess="false"
|
|
android:exported="true"
|
|
android:singleUser="true"
|
|
android:initOrder="100"
|
|
android:visibleToInstantApps="true" />
|
|
</application>
|
|
</manifest>
|