Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6a98efbe authored by Mohammed Althaf T's avatar Mohammed Althaf T 😊
Browse files

Merge branch '4271-main-backup_flow' into 'v4.0'

Add overlay to use backup app by default

See merge request !142
parents c166acaa 9ccc3f01
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@ android_app_import {
        "foundation.e.backup_allowlist",
        "foundation.e.backup_default-permissions",
        "foundation.e.backup_privapp_allowlist",
        "SettingsResBackup",
    ],
    overrides: [
        "Seedvault",
+13 −0
Original line number Diff line number Diff line
//
// SPDX-FileCopyrightText: e Foundation
// SPDX-License-Identifier: Apache-2.0
//

package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

runtime_resource_overlay {
    name: "SettingsResBackup",
    product_specific: true,
}
+13 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     SPDX-FileCopyrightText: e Foundation
     SPDX-License-Identifier: Apache-2.0
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.android.settings.backup">

    <overlay
        android:isStatic="true"
        android:priority="200"
        android:targetPackage="com.android.settings" />
</manifest>
+9 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     SPDX-FileCopyrightText: e Foundation
     SPDX-License-Identifier: Apache-2.0
-->
<resources>
    <!-- Manufacturer backup settings to launch -->
    <string name="config_backup_settings_intent" translatable="false"></string>
</resources>