I am using following line in android ant build (project.properties):
dex.force.jumbo=true
Now we are migrating from ant to Gradle. Is it po
Modify build.gradle in your module to add:
build.gradle
android { dexOptions { jumboMode = true } }
After that run gradle clean in your project root
gradle clean