blob: 7e9df1d362dccc2c4325586a51c24c0ca667939e [file] [log] [blame]
android {
defaultConfig {
setTestInstrumentationRunnerArguments three: 'four', five: 'six'
setTestHandleProfiling(false)
setTestFunctionalTest(true)
targetSdkVersion(29)
resConfigs('en', 'fr')
minSdkVersion(28)
maxSdkVersion(30)
setMatchingFallbacks(['demo', 'trial'])
setManifestPlaceholders a: 'b'
}
productFlavors {
foo {
setTestInstrumentationRunnerArguments one: 'two'
setTestHandleProfiling(true)
setTestFunctionalTest(false)
targetSdkVersion(28)
resConfig('uk')
minSdkVersion(27)
maxSdkVersion(29)
setMatchingFallbacks('trial')
setManifestPlaceholders e: 'f', g: 'h'
setDimension('paid')
}
}
buildTypes {
mumble {
setManifestPlaceholders c: 'd'
setMatchingFallbacks(['demo'])
}
}
flavorDimensions 'paid', 'country'
compileSdkVersion(30)
buildToolsVersion '1.2.3'
}