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

Commit fe45f1b9 authored by Jeff Sharkey's avatar Jeff Sharkey Committed by Android (Google) Code Review
Browse files

Merge "Default location is "internalOnly" when undefined." into mnc-dr-dev

parents 6be61a98 c88a2d5b
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1619,7 +1619,8 @@ final class ApplicationPackageManager extends PackageManager {
        // System apps and apps demanding internal storage can't be moved
        // anywhere else
        if (app.isSystemApp()
                || app.installLocation == PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY) {
                || app.installLocation == PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY
                || app.installLocation == PackageInfo.INSTALL_LOCATION_UNSPECIFIED) {
            return false;
        }