mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-13 22:57: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 {
|
||||
create("benchmark") {
|
||||
signingConfig = signingConfigs.getByName("debug")
|
||||
matchingFallbacks += listOf("release")
|
||||
signingConfig = signingConfigs["debug"]
|
||||
matchingFallbacks += "release"
|
||||
isDebuggable = false
|
||||
}
|
||||
}
|
||||
|
|
|
@ -20,8 +20,8 @@ android {
|
|||
buildTypes {
|
||||
create("benchmark") {
|
||||
isDebuggable = true
|
||||
signingConfig = getByName("debug").signingConfig
|
||||
matchingFallbacks += listOf("release")
|
||||
signingConfig = signingConfigs["debug"]
|
||||
matchingFallbacks += "release"
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue