我的应用程序有两种产品风格:
productFlavors {
europe {
buildConfigField("Boolean", "BEACON_ENABLED", "false")
}
usa {
buildConfigField("Boolean", "BEACON_ENABLED", "true")
}
}
现在,我想在一个任务中获取当前风格的名称(我在 Android Studio 中选择的名称)来更改路径:
task copyJar(type: Copy) {
from('build/intermediates/bundles/' + FLAVOR_NAME + '/release/')
}
如何在 Gradle 取得 FLAVOR _ NAME?
谢谢