美文网首页
android方法数超过65535限制修复

android方法数超过65535限制修复

作者: hello_word | 来源:发表于2016-10-19 13:25 被阅读208次

公司之前项目拽了六七个库工程,然后再集成一个SDK时候,悲剧的65535方法数限制出现了,通过不了编译。百度下找到结果并修复好了。记录下以备用后。以Androidstudio ide来说

第一步

在工程的  在主工程的的build.gradle里面的dependencies添加引用

compile 'com.android.support:multidex:'

并在android的配置里面加上

{  multiDexEnabledtrue}


第二步:

在继承工程的Application的类里,重写

@OverrideprotectedvoidattachBaseContext(Contextbase) {          super.attachBaseContext(base); 

     MultiDex.install(this);  

}


经过以上两步就可以了

相关文章

网友评论

      本文标题: android方法数超过65535限制修复

      本文链接:https://www.haomeiwen.com/subject/sgrxuttx.html