Open wuyunqiang opened 6 years ago
android 方法数超过64K 解决方法: 1:app/build.gradle
compile'com.android.support:multidex:1.0.0'
2:
defaultConfig { multiDexEnabled true }
3:在application里面
@Override protected void attachBaseContext(Context base) { super.attachBaseContext(base); MultiDex.install(this); }
will be ok.
android 方法数超过64K 解决方法: 1:app/build.gradle
2:
3:在application里面
will be ok.