在基于Flavor的Android方法中支持多个google-services.json

时间:2017-10-06 12:22:05

标签: android google-play-services android-build-flavors

我有一个有四种味道的Android应用程序。每种味道都有自己的google-services.json文件。

这个文件需要在/ app结构下。我发现这种方法可以在各种链接中使用:

productFlavors{
        one{
            applicationId 'com.flavor.one'
            versionName '2.4.3'
            minSdkVersion 16
            targetSdkVersion 23
            multiDexEnabled true
            versionCode 26
            copy {
                from 'src/one/'
                include '*.json'
                into '.'
            }
 }
        two{
            applicationId 'com.flavor.two'
            versionName '1.0.13'
            minSdkVersion 16
            targetSdkVersion 23

            multiDexEnabled true
            versionCode 26
           copy {
                from 'src/two/'
                include '*.json'
                into '.'
            }

        }
        three{
            applicationId 'com.flavor.three'
            versionName '1.4.1'
            minSdkVersion 16
            targetSdkVersion 23

            multiDexEnabled true
            versionCode 5
       copy {
                from 'src/three/'
                include '*.json'
                into '.'
            }

        }
        four{
            applicationId 'com.flavor.four'
            versionName '1.4.1'
            minSdkVersion 16
            targetSdkVersion 23

            multiDexEnabled true
            versionCode 5



        }
    }

但是这种方法总是将最后一个json复制到app目录。没有复制基于flavor的json。

0 个答案:

没有答案