blob: 0501c919af1fe79bdae0a6cddf7cd7682a4ef3ba [file] [log] [blame]
android {
defaultConfig {
testInstrumentationRunnerArguments += mapOf("three" to "four", "five" to "six")
testHandleProfiling = true
testFunctionalTest = false
targetSdkVersion(29)
resourceConfigurations += setOf("en", "fr")
minSdkVersion(28)
maxSdkVersion(30)
matchingFallbacks += listOf("demo", "trial")
manifestPlaceholders += mapOf("a" to "b")
}
productFlavors {
create("foo") {
testInstrumentationRunnerArguments += mapOf("one" to "two")
testHandleProfiling = false
testFunctionalTest = true
targetSdkVersion(28)
resourceConfigurations += setOf("uk")
minSdkVersion(27)
maxSdkVersion(29)
matchingFallbacks += listOf("trial")
manifestPlaceholders += mapOf("e" to "f", "g" to "h")
dimension = "paid"
}
}
buildTypes {
create("mumble") {
matchingFallbacks += listOf("demo")
manifestPlaceholders += mapOf("c" to "d")
}
}
flavorDimensions += listOf("paid", "country")
compileSdkVersion(30)
buildToolsVersion = "1.2.3"
}