mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 14:07:05 +05:30
refactor: simplify build type configuration
This commit is contained in:
parent
2b2010a22c
commit
8d6c567c84
2 changed files with 4 additions and 4 deletions
|
@ -33,8 +33,8 @@ android {
|
||||||
}
|
}
|
||||||
buildTypes {
|
buildTypes {
|
||||||
create("benchmark") {
|
create("benchmark") {
|
||||||
signingConfig = signingConfigs.getByName("debug")
|
signingConfig = signingConfigs["debug"]
|
||||||
matchingFallbacks += listOf("release")
|
matchingFallbacks += "release"
|
||||||
isDebuggable = false
|
isDebuggable = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,8 +20,8 @@ android {
|
||||||
buildTypes {
|
buildTypes {
|
||||||
create("benchmark") {
|
create("benchmark") {
|
||||||
isDebuggable = true
|
isDebuggable = true
|
||||||
signingConfig = getByName("debug").signingConfig
|
signingConfig = signingConfigs["debug"]
|
||||||
matchingFallbacks += listOf("release")
|
matchingFallbacks += "release"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue