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