当一个项目很大或使用过多的依赖库时,方法量会超过64k。
解决:
android {
compileSdkVersion 28
buildToolsVersion '28.0.0'
defaultConfig {
applicationId "com.example.xxx"
minSdkVersion 19
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true //分割包
}
dexOptions {
javaMaxHeapSize "4g"
}