Updated on 2026-08-14
This commit is contained in:
parent
d3f3e86fa3
commit
c118781f5a
30 changed files with 561 additions and 6 deletions
|
|
@ -25,6 +25,20 @@ android {
|
|||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
BuildConfigFieldFactory(
|
||||
fields = listOf(Field.TesterMenuAvailability(false)),
|
||||
builder = ::buildConfigField,
|
||||
).create()
|
||||
}
|
||||
|
||||
debug {
|
||||
BuildConfigFieldFactory(
|
||||
fields = listOf(Field.TesterMenuAvailability(true)),
|
||||
builder = ::buildConfigField,
|
||||
).create()
|
||||
}
|
||||
|
||||
create("debug_beta") {
|
||||
initWith(getByName("release"))
|
||||
BuildConfigFieldFactory(
|
||||
|
|
@ -32,6 +46,7 @@ android {
|
|||
Field.Environment("release"),
|
||||
Field.TestActionEnabled(true),
|
||||
Field.LogEnabled(true),
|
||||
Field.TesterMenuAvailability(true)
|
||||
),
|
||||
builder = ::buildConfigField,
|
||||
).create()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue