Cause: com.android.dex.DexIndexOverflowException: Cannot merge new index 68696 into a non-jumbo insr

错误:Error converting bytecode to dex: Cause: com.android.dex.DexIndexOverflowException: Cannot merge new index 68696 into a non-jumbo insrtuction!



解决方案:
在build.gradle的android{}中增加:
dexOptions{
    jumboMode true
}
即可!

你可能感兴趣的:(android,解决方案)