android分包三步走

来源:互联网 发布:山西网络黄河电视台 编辑:程序博客网 时间:2024/06/06 15:35


Android单个dex文件不能超过65536个方法问题,我们只需要三步就可以解决。

1.让应用application继承MultiDexApplication

2.在build.gradle文件中加入

defaultConfig {    // Enabling multidex support.    multiDexEnabled true}
3.在build.gradle文件中加入
compile 'com.android.support:multidex:1.0.0'


原创粉丝点击