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

This commit is contained in:
Dianne Hackborn
2010-05-14 23:15:06 -07:00
committed by Android Git Automerger

View File

@@ -5340,13 +5340,13 @@ class PackageManagerService extends IPackageManager.Stub {
} }
SdInstallArgs(String cid) { SdInstallArgs(String cid) {
this((Uri)null, cid); super(null, null, PackageManager.INSTALL_EXTERNAL, null);
this.cid = cid;
} }
SdInstallArgs(Uri packageURI, String cid) { SdInstallArgs(Uri packageURI, String cid) {
super(packageURI, null, PackageManager.INSTALL_EXTERNAL, null); super(packageURI, null, PackageManager.INSTALL_EXTERNAL, null);
this.cid = cid; this.cid = cid;
cachePath = PackageHelper.getSdDir(cid);
} }
void createCopyFile() { void createCopyFile() {