美文网首页
[Android]Cannot fit requested cl

[Android]Cannot fit requested cl

作者: 野小火 | 来源:发表于2018-04-25 16:17 被阅读2290次

解决问题有3步

步骤1

在app module中的build.gradle中添加依赖

implementation 'com.android.support:multidex:1.0.3'
步骤2

在app module中的build.gradle中的defaultConfig中添加以下代码

multiDexEnabled true
步骤3

如果你自定义了Application需要在类中重写一个方法

    override fun attachBaseContext(base: Context?) {
        super.attachBaseContext(base)
        // 主要是添加下面这句代码
        MultiDex.install(this)
    }

相关文章

网友评论

      本文标题:[Android]Cannot fit requested cl

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