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

Merge commit '39c31bbaf9bb07365a4b63144cdf625483851a08' into kraken

* commit '39c31bbaf9bb07365a4b63144cdf625483851a08':
  Fix issue #2686193: Can't move apps to SD card
This commit is contained in:
Dianne Hackborn
2010-05-14 23:13:30 -07:00
committed by Android Git Automerger

View File

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