如何为不同产品口味添加多个Google服务文件

时间:2019-02-27 11:10:41

标签: android performance android-productflavors android-push-notification

我有一个可供2个不同的客户使用的应用程序,并做了一些小的更改,因此我创建了2个不同的样式,并为每个应用程序添加了不同的程序包名称,徽标和应用程序名称。

  productFlavors {
        pro {
            applicationId = "com.pro"
            resValue "string", "app_name", "PROO.."
            manifestPlaceholders = [
                    appIcon: "@mipmap/ic_launcher"
            ]

        }
        free {
            applicationId = "com.free2"
            resValue "string", "app_name", "FREE.."
            manifestPlaceholders = [
                    appIcon: "@mipmap/ic_free_launcher"
            ]
        }
    }

现在我需要为它们两个都集成push notification,我在firebase中为每个客户端创建了2个项目,并获得了2个google-services.json文件。

是否有可能同时添加这两个google-services.json文件并使用产品风格来启动特定文件。

0 个答案:

没有答案