com.android.dex.DexIndexOverflowException: Cannot merge new index 66078 into a non-jumbo instruction

来源:互联网 发布:王治郅在nba的数据 编辑:程序博客网 时间:2024/06/16 16:00

 报错提示: 
 Error:Execution failed for task ':app:transformClassesWithDexForDebug'.
> com.android.build.api.transform.TransformException: com.android.ide.common.process.ProcessException: java.util.concurrent.ExecutionException: com.android.dex.DexIndexOverflowException: Cannot merge new index 66078 into a non-jumbo instruction!

解决方法:
android {        dexOptions {        jumboMode true    }}

 
阅读全文
1 0