Create staging build type after release

This commit is contained in:
jarnedemeulemeester 2021-09-23 09:40:55 +02:00
parent 7fe197e3b6
commit 18b2867c3b
No known key found for this signature in database
GPG key ID: B61B7B150DB6A6D2

View file

@ -26,15 +26,15 @@ android {
getByName("debug") { getByName("debug") {
applicationIdSuffix = ".debug" applicationIdSuffix = ".debug"
} }
create("staging") {
initWith(getByName("release"))
applicationIdSuffix = ".staging"
}
getByName("release") { getByName("release") {
isMinifyEnabled = true isMinifyEnabled = true
isShrinkResources = true isShrinkResources = true
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro") proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
} }
create("staging") {
initWith(getByName("release"))
applicationIdSuffix = ".staging"
}
} }
compileOptions { compileOptions {