解决安卓中单个dex方法数超过65535的方法
Posted 阿金好掂
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决安卓中单个dex方法数超过65535的方法相关的知识,希望对你有一定的参考价值。
1、百度下载 60K-methods.jar包,复制至libs文件夹中,添加到gradle中
2、在build.gradle中的defaultConfig{}下添加 multiDexEnabled true
3、 方法一、在manifest文件中,application下添加 android:name= "android.support.multidex.MultiDexApplication"
方法二、新建Application类,在onCreate方法中,添加方法 MultiDex.install(getTargetContext()); 推荐使用attachBaseContext()方法
以上是关于解决安卓中单个dex方法数超过65535的方法的主要内容,如果未能解决你的问题,请参考以下文章