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

Commit 2670fcaf authored by Patrick Baumann's avatar Patrick Baumann Committed by android-build-merger
Browse files

Merge "Use KNOWN_PACKAGES when shared lib consumers" into qt-qpr1-dev am: a5c4b9e3

am: 950a97c2

Change-Id: I061626d8cb546687c2c81983a588d036b9b4fd41
parents 536fe955 950a97c2
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -22256,8 +22256,9 @@ public class PackageManagerService extends IPackageManager.Stub
                continue;
            }
            final String packageName = ps.pkg.packageName;
            // Skip over if system app
            if ((ps.pkgFlags & ApplicationInfo.FLAG_SYSTEM) != 0) {
            // Skip over if system app or static shared library
            if ((ps.pkgFlags & ApplicationInfo.FLAG_SYSTEM) != 0
                    || !TextUtils.isEmpty(ps.pkg.staticSharedLibName)) {
                continue;
            }
            if (DEBUG_CLEAN_APKS) {