mulitdex解决DexIndexOverflowException

在Android中单个dex文件所能够包含的最大方法数为65536.这里包含了framework、依赖jar包以及应用本身的代码中的所有方法。当发生DexIndexOverflowException时。按照下面的方法便可以解决。

1、在app目录下的build.gradle文件中配置。


mulitdex解决DexIndexOverflowException_第1张图片
在defaultConfig中添加multiDexEnable true


mulitdex解决DexIndexOverflowException_第2张图片
在dependencies中添加依赖

最后一步在application中重载attachBaseContext方法


mulitdex解决DexIndexOverflowException_第3张图片
在attachBaseContext方法中添加MultiDex.install(this);

你可能感兴趣的:(mulitdex解决DexIndexOverflowException)