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

Merge commit 'aa77de1348cbda3d5348b15734ab141cb9c7759c' into froyo-plus-aosp

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

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