Is there a way to get the plugin to pass params to dex?
In particular I was hoping to turn debug on for dex (ie --debug) in an attempt to find out why it always fails on a non-clean build now with
[INFO] UNEXPECTED TOP-LEVEL EXCEPTION:
[INFO] java.lang.IllegalArgumentException: already added: Lcom/fasterxml/jackson/core/base/GeneratorBase$1;
[INFO] at com.android.dx.dex.file.ClassDefsSection.add(ClassDefsSection.java:123)
It's made my build cycle really long to have to clean each time (I have 3 apklib includes thanks to HoloEverywhere + one of my one, so 4 separate aapt calls - it'd be nice if those were skipped if they had already been run).
So is there any way to turn on debug output for dex?
Or perhaps someone has an insight into why a non-clean build always fails with the above?
William