美文网首页
遇到 Error:The number of method re

遇到 Error:The number of method re

作者: 爱你忘了熟悉 | 来源:发表于2018-09-03 14:59 被阅读4次

Error:The number of method references in a .dex file cannot exceed 64K. Learn how to resolve this issue at https://developer.android.com/tools/building/multidex.html

解决办法 

配置方法数超过 64K 的应用

简单解决 办法

您的 minSdkVersion 设置为 21 或更高值,您只需在模块级 build.gradle 文件中将 multiDexEnabled 设置为 true,

android {

    defaultConfig {

        ...        minSdkVersion 21

        targetSdkVersion 25        multiDexEnabled true

    }

    ...}

亲测好用  记录一下  

引用文章  https://blog.csdn.net/iromkoear/article/details/70767721

相关文章

网友评论

      本文标题:遇到 Error:The number of method re

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