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

Commit 41b93d8c authored by Ryan Mitchell's avatar Ryan Mitchell
Browse files

Fix overlaying shared libraries

Overlaying shared library support accidentally got dropped while
refactoring internal PMS structure.getAllOverlayPaths includes shared
library overlay paths.

Bug: 150446147
Test: OverlayRemountedTest
Change-Id: I5eed0f219c85156c753df6ff829970e1c4e4c4de
parent cb2d2ec7
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -362,7 +362,7 @@ public class PackageInfoWithoutStateUtils {
            ai.category = FallbackCategoryProvider.getFallbackCategory(ai.packageName);
            ai.category = FallbackCategoryProvider.getFallbackCategory(ai.packageName);
        }
        }
        ai.seInfoUser = SELinuxUtil.assignSeinfoUser(state);
        ai.seInfoUser = SELinuxUtil.assignSeinfoUser(state);
        ai.resourceDirs = state.getOverlayPaths();
        ai.resourceDirs = state.getAllOverlayPaths();


        return ai;
        return ai;
    }
    }