Sign in
android
/
platform
/
tools
/
adt
/
idea
/
HEAD
/
.
/
project-system-gradle-upgrade
/
testData
/
upgrade
/
RewriteDeprecatedOperators
/
SetManifestPlaceholders.gradle.kts
blob: 2a5d10e49413eb9293dd511695de7b7b8e8d775a [
file
] [
log
] [
blame
]
android
{
defaultConfig
{
setManifestPlaceholders
(
mapOf
(
"a"
to
"b"
))
}
buildTypes
{
create
(
"mumble"
)
{
setManifestPlaceholders
(
mapOf
(
"c"
to
"d"
))
}
}
productFlavors
{
create
(
"foo"
)
{
setManifestPlaceholders
(
mapOf
(
"e"
to
"f"
,
"g"
to
"h"
))
}
}
}