Reorganize buildTypes gradle config

* disable minify (proguard) on all build types
* explicitly disable resource shrinking on all build types
This commit is contained in:
Daniel Martí 2015-08-09 19:09:02 -07:00
parent be3148d0e7
commit 939e3004b6

View File

@ -152,15 +152,14 @@ android {
} }
buildTypes { buildTypes {
release { all {
minifyEnabled false minifyEnabled false
shrinkResources false // requires minify (proguard)
} }
buildTypes {
debug { debug {
debuggable true debuggable true
} }
} }
}
compileOptions { compileOptions {
compileOptions.encoding = "UTF-8" compileOptions.encoding = "UTF-8"