summaryrefslogtreecommitdiffstats
path: root/packages/DefaultContainerService
diff options
context:
space:
mode:
authorJeff Sharkey <jsharkey@android.com>2014-06-16 10:51:20 -0700
committerJeff Sharkey <jsharkey@android.com>2014-06-16 13:20:18 -0700
commitc4858a2ba972e86436d629c4d3f18eb49116de14 (patch)
tree39a0881ce85d09ddd277f050c28f0d3cba07df7d /packages/DefaultContainerService
parentb87de28f50e9f02a365f35348f8da6cc2629bc1c (diff)
downloadframeworks_base-c4858a2ba972e86436d629c4d3f18eb49116de14.zip
frameworks_base-c4858a2ba972e86436d629c4d3f18eb49116de14.tar.gz
frameworks_base-c4858a2ba972e86436d629c4d3f18eb49116de14.tar.bz2
Switch PackageParser to reference single path.
It previously kept mPath separate from mScanPath for some very odd edge cases around moving apps-on-SD. This changes it to always use a single path, refactors moving to keep separate paths. Refactors method names in PackageParser to be clearer about their APK-versus-package relationship. Beginnings of a split package parser. Instead of requiring that callers check error codes when null, switch to always throwing on parse errors, to require that callers deal with the error. Longer term the entire parser should switch to this style, but its too pervasive for a simple refactoring. Change-Id: If071d8e55e46e56cc201fadfb51cb471713ae973
Diffstat (limited to 'packages/DefaultContainerService')
-rw-r--r--packages/DefaultContainerService/src/com/android/defcontainer/DefaultContainerService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/DefaultContainerService/src/com/android/defcontainer/DefaultContainerService.java b/packages/DefaultContainerService/src/com/android/defcontainer/DefaultContainerService.java
index ec87c6e..2ed3d73 100644
--- a/packages/DefaultContainerService/src/com/android/defcontainer/DefaultContainerService.java
+++ b/packages/DefaultContainerService/src/com/android/defcontainer/DefaultContainerService.java
@@ -170,7 +170,7 @@ public class DefaultContainerService extends IntentService {
DisplayMetrics metrics = new DisplayMetrics();
metrics.setToDefaults();
- PackageParser.PackageLite pkg = PackageParser.parsePackageLite(packagePath, 0);
+ PackageParser.ApkLite pkg = PackageParser.parseApkLite(packagePath, 0);
if (pkg == null) {
Slog.w(TAG, "Failed to parse package");