Finish initial work

This commit is contained in:
Henry Hiles 2023-03-20 19:58:16 -04:00
parent 93067a4599
commit fe491e44bf
3 changed files with 7 additions and 3 deletions

View file

@ -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