Finish initial work
This commit is contained in:
parent
93067a4599
commit
fe491e44bf
3 changed files with 7 additions and 3 deletions
|
@ -22,7 +22,7 @@ android {
|
|||
|
||||
buildTypes {
|
||||
named("release") {
|
||||
isMinifyEnabled = false
|
||||
isMinifyEnabled = true
|
||||
setProguardFiles(
|
||||
listOf(
|
||||
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||||
|
@ -30,6 +30,10 @@ android {
|
|||
)
|
||||
)
|
||||
}
|
||||
named("debug") {
|
||||
isMinifyEnabled = false
|
||||
applicationIdSuffix = ".debug"
|
||||
}
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||
|
|
Reference in a new issue