According to Google’s Android plugin user guide
you can set dex options:
android {
dexOptions {
incremental false
preDexLibraries = false
jumboMode = false
} }
this are only three options though. The tool ‘dx’ offers a whole lot more. How can I in theory set all the options to my satisfaction…?