am 71f9ec27: Merge "Resolve canonical package path before writing it to packages.list." into mnc-dev

* commit '71f9ec2708aa5af69ee35e26215a7a13c31e6cfa':
  Resolve canonical package path before writing it to packages.list.
This commit is contained in:
Oleksiy Vyalov
2015-06-19 18:27:58 +00:00
committed by Android Git Automerger

View File

@@ -2098,7 +2098,7 @@ final class Settings {
}
final ApplicationInfo ai = pkg.pkg.applicationInfo;
final String dataPath = ai.dataDir;
final String dataPath = new File(ai.dataDir).getCanonicalPath();
final boolean isDebug = (ai.flags & ApplicationInfo.FLAG_DEBUGGABLE) != 0;
final int[] gids = pkg.getPermissionsState().computeGids(userIds);