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
This commit is contained in:
Henry Daitx 2019-01-17 16:24:52 +00:00
parent 0ae6d74436
commit 05af6aef82

View file

@ -22,6 +22,9 @@ java_binary {
wrapper: "deployagent/deployagent.sh",
proto: {
type: "lite",
},
dex_preopt: {
enabled: false,
}
}