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

Commit 4b42adf6 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
parent 7f19b15b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2102,7 +2102,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);