- [Android]Cannot fit requested cl
- Error: Cannot fit requested clas
- Error: Cannot fit requested clas
- Cannot fit requested classes in
- Android Try supplying a main-dex
- Android 报错: Cannot fit requested
- Error: Cannot fit requested clas
- Android单Dex文件的64K限制
- Error:Cannot fit requested class
- caused by: cannot fit requested
解决问题有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)
}
网友评论