Updated on 2026-08-14
This commit is contained in:
parent
629d42fc34
commit
0d2f6e2410
35 changed files with 389 additions and 113 deletions
|
|
@ -47,6 +47,7 @@ android {
|
|||
Field.Environment("prod"),
|
||||
Field.TestActionEnabled(false),
|
||||
Field.LogEnabled(false),
|
||||
Field.TesterMenuAvailability(false),
|
||||
),
|
||||
builder = ::buildConfigField,
|
||||
).create()
|
||||
|
|
@ -67,6 +68,7 @@ android {
|
|||
Field.Environment("dev"),
|
||||
Field.TestActionEnabled(true),
|
||||
Field.LogEnabled(true),
|
||||
Field.TesterMenuAvailability(true),
|
||||
),
|
||||
builder = ::buildConfigField,
|
||||
).create()
|
||||
|
|
@ -77,6 +79,10 @@ android {
|
|||
versionNameSuffix = "-beta"
|
||||
applicationIdSuffix = ".debug"
|
||||
signingConfig = signingConfigs.getByName("debug")
|
||||
BuildConfigFieldFactory(
|
||||
fields = listOf(Field.TesterMenuAvailability(true)),
|
||||
builder = ::buildConfigField,
|
||||
).create()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -127,6 +133,8 @@ dependencies {
|
|||
implementation(project(":features:swap:presentation"))
|
||||
implementation(project(":features:swap:domain"))
|
||||
implementation(project(":features:swap:data"))
|
||||
implementation(project(":features:tester:api"))
|
||||
implementation(project(":features:tester:impl"))
|
||||
|
||||
/** AndroidX libraries */
|
||||
implementation(AndroidX.coreKtx)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue