美文网首页Android常见bug
Error:Cannot fit requested class

Error:Cannot fit requested class

作者: 是昵称呀 | 来源:发表于2018-11-26 13:08 被阅读0次

    出现原因:

    主要原因是你的项目貌似有点大,已经超过65k个方法。一个dex已经装不下了,需要个多个dex,也就是multidex ,因为Android系统定义总方法数是一个short int,short int 最大值为65536

    解决方法

    gradle文件的defaultConfig默认配置里面增加:

    multiDexEnabled true
    

    在dependencies中添加:

    implementation 'com.android.support:multidex:1.0.3'
    

    自定义的Application的onCreate()中添加:

     MultiDex.install(this);
    

    相关文章

      网友评论

        本文标题:Error:Cannot fit requested class

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