Gradle判断当前编译的Flavor

2020-10-16  本文已影响0人  简单点的笨演员

要判断当前编译的是哪个Flavor,可以参考下面的代码。本人亲测编译时有效,在仅是Gradle Sync中无效,不介意的话就使用。

// build.gradle in application module

android {
    productFlavors {
        googlePlay {
        }
        wandoujia {
        }
    }
}

if (getGradle().getStartParameter().getTaskRequests().toString().contains("GooglePlay")) {
    // Google Play 版本才应用该插件
    apply plugin: 'com.google.gms.google-services'
}

参考:
https://www.cnblogs.com/shaobin0604/p/7941308.html

上一篇下一篇

猜你喜欢

热点阅读