android studio:::解决方法数超过65536的方法,三步
Posted 小#安
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android studio:::解决方法数超过65536的方法,三步相关的知识,希望对你有一定的参考价值。
1.在build.gradle(Module: app) 中的defaultConfig{}中添加
multiDexEnabled true
2.在build.gradle(Module: app) 中的dependencies{}中添加
compile ‘com.android.support:multidex:1.0.0‘
3.在你自定义继承于Application的类里面重写attachBaseContext(Context base)方法
方法中加一行代码
MultiDex.install(this);
以上是关于android studio:::解决方法数超过65536的方法,三步的主要内容,如果未能解决你的问题,请参考以下文章