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

* commit '855386712e30f0caa513fe4afeb34f9ff2a9c3ba':
  Resolve canonical package path before writing it to packages.list.
This commit is contained in:
Oleksiy Vyalov
2015-06-19 18:41:25 +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);