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

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

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

Merge commit 'aa77de13' into froyo-plus-aosp

* commit 'aa77de13':
  Fix issue #2686193: Can't move apps to SD card
parents c6b7a2d7 aa77de13
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -5315,13 +5315,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() {