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

Commit fbec21ff authored by Christopher Tate's avatar Christopher Tate
Browse files

Teach bmgr that "android" is a valid package name

Bug 18379037

Change-Id: I4d6da2893f83e672920bbda9447aa4cbd1ecec7b
parent 2f8d4ea2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -354,7 +354,7 @@ public final class Bmgr {
            return;
        }

        if (arg.indexOf('.') >= 0) {
        if (arg.indexOf('.') >= 0 || arg.equals("android")) {
            // it's a package name
            doRestorePackage(arg);
        } else {