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

Commit b73173d7 authored by Nicolas Geoffray's avatar Nicolas Geoffray Committed by android-build-merger
Browse files

Merge "Adjust forced dexopt in case of stripped APKs." am: 5669550a am: f59dd816 am: 8d76994c

am: 384683ef

Change-Id: I3f3a130059f0f878f2c84b368a2f12cc86076b67
parents 13aa8eb1 384683ef
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -634,9 +634,13 @@ public class PackageDexOptimizer {

        @Override
        protected int adjustDexoptNeeded(int dexoptNeeded) {
            // Ensure compilation, no matter the current state.
            // TODO: The return value is wrong when patchoat is needed.
            return DexFile.DEX2OAT_FROM_SCRATCH;
            if (dexoptNeeded == DexFile.NO_DEXOPT_NEEDED) {
                // Ensure compilation by pretending a compiler filter change on the
                // apk/odex location (the reason for the '-'. A positive value means
                // the 'oat' location).
                return -DexFile.DEX2OAT_FOR_FILTER;
            }
            return dexoptNeeded;
        }

        @Override