Can i disable Firebase plugin for specific flavor?

前端 未结 5 1996
执笔经年
执笔经年 2021-02-13 03:01

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:53

    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
        }
    }
    

提交回复
热议问题