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
You can modify your build.gradle file to include:
build.gradle
android { dexOptions { jumboMode = true } }