解决问题有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)
}