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

Commit e0a19573 authored by Dianne Hackborn's avatar Dianne Hackborn Committed by Android Git Automerger
Browse files

am 39c31bba: am aa77de13: Fix issue #2686193: Can\'t move apps to SD card

Merge commit '39c31bba' into kraken

* commit '39c31bba':
  Fix issue #2686193: Can't move apps to SD card
parents ae7ca4c3 39c31bba
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -5340,13 +5340,13 @@ class PackageManagerService extends IPackageManager.Stub {
        }

        SdInstallArgs(String cid) {
            this((Uri)null, cid);
            super(null, null, PackageManager.INSTALL_EXTERNAL, null);
            this.cid = cid;
        }

        SdInstallArgs(Uri packageURI, String cid) {
            super(packageURI, null, PackageManager.INSTALL_EXTERNAL, null);
            this.cid = cid;
            cachePath = PackageHelper.getSdDir(cid);
        }

        void createCopyFile() {