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

Commit 9ab55d9a authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix default of extractNativeLibs in parseBaseApplication"

parents 54938a05 12dd9cd4
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -3777,9 +3777,11 @@ public class PackageParser {
            ai.flags |= ApplicationInfo.FLAG_MULTIARCH;
        }

        final boolean extractNativeLibsDefault =
                owner.applicationInfo.targetSdkVersion < Build.VERSION_CODES.Q;
        if (sa.getBoolean(
                com.android.internal.R.styleable.AndroidManifestApplication_extractNativeLibs,
                true)) {
                extractNativeLibsDefault)) {
            ai.flags |= ApplicationInfo.FLAG_EXTRACT_NATIVE_LIBS;
        }