在gradle中定义变量
defaultConfig {
manifestPlaceholders = [
appName : "HelloWorld",
dbVersion: 101
]
}
buildTypes {
release {
manifestPlaceholders = [
appName : "HelloWorld",
dbVersion: 101
]
}
debug {
manifestPlaceholders = [
appName : "HelloWorld",
dbVersion: 101
]
}
}
在manifest中引用变量