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

Commit 05af6aef authored by Henry Daitx's avatar Henry Daitx
Browse files

Disable dexpreopt for deployagent

platform-tools/deployagent.jar is built incorrectly for userdebug sdk
builds (which the build machines in android-build use). In eng builds
dexpreopt is disable by default, so the file is built correctly.

This change disables dexpreopt for deployagent in all builds, for
consistency.

Bug: 122831369

Test: lunch sdk-eng
Test: make sdk
Change-Id: I370f0536d906690b153f114ba3dd589a14d222d4
parent 0ae6d744
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -22,6 +22,9 @@ java_binary {
    wrapper: "deployagent/deployagent.sh",
    proto: {
        type: "lite",
    },
    dex_preopt: {
        enabled: false,
    }
}