Can i disable Firebase plugin for specific flavor?

前端 未结 5 739
旧巷少年郎
旧巷少年郎 2021-02-13 03:16

I\'m currently trying out the Firebase analytics suit, but, i have faced one small issue, my app is distributed on both google play and amazon store (which doesn\'t support goog

5条回答
  •  无人及你
    2021-02-13 03:38

    I finally got a version to work with new gradle. Tested with gradle 4.6, build tools 3.0.1, google-services plugin 3.1.1

    apply plugin: 'com.google.gms.google-services'
    
    android.applicationVariants.all { variant ->
        if (variant.name == 'someVariantNameYouDontwantFirebase') {
            project.tasks.getByName('process' + variant.name.capitalize() + 'GoogleServices').enabled = false
        }
    }
    

提交回复
热议问题