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

Commit 6c5631ee authored by Christopher Tate's avatar Christopher Tate
Browse files

Do not perform backup/restore of instant apps

This keeps the install flow fast, and also happens to mean that
there is feature parity in this regard between pre-O and O+
instant app handling.

Fix #38263351
Test: manual

Change-Id: I8eb08c12d800f5288583e792621920c9876efdfc
parent 276b63dc
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -790,6 +790,11 @@ public class BackupManagerService {
            return false;
        }
        // 4. it is an "instant" app
        if (app.isInstantApp()) {
            return false;
        }
        // Everything else checks out; the only remaining roadblock would be if the
        // package were disabled
        return !appIsDisabled(app, pm);