在 Android Studio 中,我创建了两个配置:
如何在代码中确定我选择了哪个配置?
我知道有buildConfigField
,/app/build.gradle
但名称与名称buildTypes
不对应configuration
,所以我想知道它们是如何组合在一起的。
android {
...
defaultConfig {
...
}
buildTypes {
debug {
...
buildConfigField 'boolean', 'DEBUG', 'true'
}
release {
...
}
}
}
我假设在 Android Studio 中,aconfiguration
对应schema
于 Xcode 中的 a,abuildConfigField
对应Environment Variable
于 Xcode 中的(我来自 iOS 世界)。