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

Commit e131dac8 authored by Andreas Gampe's avatar Andreas Gampe
Browse files

PMSCompilerMapping: Hardcode a value for pm.dexopt.shared

This is a temporary hack while we sort out the larger issues.

Test: make & flash
Bug: 68755013
Change-Id: I59caf79027dd8be2fd698606822a20b19c0d942a
parent 5e507fad
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -59,6 +59,8 @@ public class PackageManagerServiceCompilerMapping {
        // vendor.
        if ("pm.dexopt.inactive".equals(sysPropName)) {
            sysPropValue = "verify";
        } else if ("pm.dexopt.shared".equals(sysPropName)) {
            sysPropValue = "speed";
        } else {
            sysPropValue = SystemProperties.get(sysPropName);
        }