Error:A problem occurred configuring project ':app'.
> Removing unused resources requires unused code shrinking to be turned
>on. See http://d.android.com/r/tools/shrink-resources.html for more information.
解决:
shrinkResources true
buildTypes {
release {
minifyEnabled false
proguardFile file('proguard.cfg')
shrinkResources true
debuggable false
}
debug {
minifyEnabled false
proguardFile 'Unrecognized value'
shrinkResources true
debuggable true
}
}