美文网首页
Gradle判断当前编译的Flavor

Gradle判断当前编译的Flavor

作者: 简单点的笨演员 | 来源:发表于2020-10-16 19:24 被阅读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

    相关文章

      网友评论

          本文标题:Gradle判断当前编译的Flavor

          本文链接:https://www.haomeiwen.com/subject/bgktmktx.html