I have a situation where I want to set jumbo mode dex to true in my Maven assembly. How can I set the equivalent of this:
dex.force.jumbo = true
using the android-maven-plugin plugin?
<plugin> <groupId>com.jayway.maven.plugins.android.generation2</groupId> <artifactId>android-maven-plugin</artifactId> <extensions>true</extensions> <configuration> .... <dex> <jvmArguments> <jvmArgument>-Xms1024m</jvmArgument> <jvmArgument>-Xmx2048m</jvmArgument> </jvmArguments> </dex> </configuration> </plugin>
source share