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

Commit da5d9af8 authored by Jeff Sharkey's avatar Jeff Sharkey Committed by Android Git Automerger
Browse files

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

* commit 'fe45f1b9':
  Default location is "internalOnly" when undefined.
parents 04166953 fe45f1b9
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;
        }