Android Studio:如何在产品风格中排除google-services模块?

时间:2016-02-02 14:13:49

标签: java android gradle android-productflavors

在我的Android项目中,有几种产品风格:

buildTypes {
    release {}
    debug {}
    staging {}
}

productFlavors {
    freeVersion {}
    proVersion {}
    partnerVersion {}
}

另外,我使用Google Analytics:

apply plugin: 'com.google.gms.google-services'

dependencies {
    compile 'com.google.android.gms:play-services-analytics:8.4.0'
}

如何在其中一个中排除google-services?例如,在:

freeVersion {}

3 个答案:

答案 0 :(得分:9)

请注意使用freeCompile并声明变量flavor以有条件地应用插件。

apply plugin: 'com.android.application'

def flavor

android {

    ....

    ....

    productFlavors {
        free {
            applicationId "com.anandbibek.builditbigger.free"
            flavor = "free"
        }
        paid {
            applicationId "com.anandbibek.builditbigger.paid"
            flavor = "paid"
        }
    }
}

dependencies {

    // Added for AdMob
    freeCompile 'com.google.firebase:firebase-ads:9.6.1'

    compile 'com.android.support:appcompat-v7:24.2.1'
    compile 'com.google.code.findbugs:jsr305:2.0.1'

}
if(flavor == "free") {
    apply plugin: 'com.google.gms.google-services'
}

确保将google-services.json文件放在特定于flavor的文件夹中。在我的情况下,我只将其放在app/src/free中。当您在主项目gradle文件中使用classpath 'com.google.gms:google-services:3.0.0'时,此工具可用。

答案 1 :(得分:4)

另一个解决方案是禁用google-services插件添加的任务 - 这里我启用了任务,如果flavorName不是“freeVersion”,但是这个逻辑可以清楚地更新,以便更改为看看变体buildType。

apply plugin: 'com.google.gms.google-services'

// must be after the plugin is applied otherwise no tasks will be found
android.applicationVariants.all { variant ->
    def googleTask = tasks.findByName("process${variant.name.capitalize()}GoogleServices")
    googleTask.enabled = !"freeVersion".equals(variant.flavorName)
}

答案 2 :(得分:-2)

我最初误解了这个问题。要排除免费版本,您可以使用proVersionCompile和partnerVersionCompile以及所需的依赖项来排除freeVersion。

dependencies {
    proVersionCompile 'com.google.android.gms:play-services-analytics:8.4.0'
    partnerVersionCompile 'com.google.android.gms:play-services-analytics:8.4.0'
}