解决办法
android {
buildTypes {
release {
shrinkResources false
}
}
aaptOptions {
cruncherEnabled = false
}
}
buildTypes {
release {
multiDexEnabled false
minifyEnabled true
zipAlignEnabled true
shrinkResources true
signingConfig signingConfigs.release
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
https://blog.csdn.net/qq_36304617/article/details/78358825
https://www.cnblogs.com/yidan621/p/5630682.html
希望能帮到各位。。。