解决方法数超过64K问题
android {
defaultConfig
{...
minSdkVersion
15
targetSdkVersion
28multiDexEnabled true}...}
dependencies
{implementation "androidx.multidex:multidex:2.0.1"}
public class MyApplicationextends Application {
public static Contextapp;
//兼容4.4
@Override
protected void attachBaseContext(Context base) {
super.attachBaseContext(base);
MultiDex.install(base);
}
}
网友评论