Hi guys,
Working with plugin 1.5.0 I'm trying to figure out how to set command line parameters for the dx. I am aware of the dexOptions directive, but it doesn't provide the full set of command line parameters available in dx.
In previous versions of the android plugin I was using the dex class and doing something like this:
if (dexTask.additionalParameters == null) dexTask.additionalParameters = []
dexTask.additionalParameters += '--no-locals'
However, in 1.5.0, even if I find the task "transformClassesWithDexForDebug", there is no longer an "additionalParameters" property on that task.
Is there another way to achieve that?
Specifically we need to control the following options:
--no-locals
--minimal-main-dex
Thanks!
Ariel