编译时出现DexIndexOverflowException 的解决办法

异常描述:

com.android.dex.DexIndexOverflowException: method ID not in...

解决办法:

在项目build.gradle文件中加入如下配置即可,注意不是根目录的build文件

dexOptions {
        jumboMode true
}

你可能感兴趣的:(开发工具问题笔记)