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

Commit 71f9ec27 authored by Oleksiy Vyalov's avatar Oleksiy Vyalov Committed by Android (Google) Code Review
Browse files

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

parents 7c669f45 466ecdbc
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);