Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 466ecdbc authored by Oleksiy Vyalov's avatar Oleksiy Vyalov
Browse files

Resolve canonical package path before writing it to packages.list.

Bug id - b/21028929

Change-Id: I82a7ba4f27017d3de29790cdbfab656ca9814cfb
(cherry picked from commit 4b42adf6)
parent 8b156e37
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);