Is it possible to set Android dex options directly from inside the Gradle build script..?

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…?

The current documentation of the plugin only gives an example. I’d try to ask this question on the user forum for the Android plugin. My hunch is that the options are simply not fully documented.