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
this error means that your method have got over 65536
just add multiDexEnabled on default config at build.gradle file
defaultConfig { ... multiDexEnabled true ... }
this way also work: https://blog.csdn.net/H_O_W_E/article/details/77742907