Skip to content

Commit

Permalink
Adjust sample
Browse files Browse the repository at this point in the history
  • Loading branch information
rbro112 committed Oct 12, 2023
1 parent 7ff295b commit bdfe32d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions performance/sample/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,38 @@ android {
signingConfig = signingConfigs.getByName("debug")
}
debug {
isDefault = true
applicationIdSuffix = ".debug"
}
}

flavorDimensions.add("api")
flavorDimensions.add("mode")

productFlavors {
create("demo") {
dimension = "mode"
applicationIdSuffix = ".demo"
versionNameSuffix = "-demo"
}

create("full") {
dimension = "mode"
applicationIdSuffix = ".full"
versionNameSuffix = "-full"
}

create("minApi24") {
dimension = "api"
minSdk = 24
}

create("minApi21") {
dimension = "api"
minSdk = 21
}
}

flavorDimensions.add("store")
flavorDimensions.add("distribution")

Expand Down

0 comments on commit bdfe32d

Please sign in to comment.