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

Commit aa77de13 authored by Dianne Hackborn's avatar Dianne Hackborn
Browse files

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

Change-Id: Icd84d8080d33fb8ce5103a0e726d50f0ec70092e
parent d1e9d590
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() {