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

Change-Id: Icd84d8080d33fb8ce5103a0e726d50f0ec70092e
This commit is contained in:
Dianne Hackborn
2010-05-14 22:33:54 -07:00
parent d1e9d59094
commit aa77de1348

View File

@@ -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() {