Firebase google-services.json 有多个项目?

Firebase google-services.json with multiple projects?

对于我们的应用程序,我使用了两个不同的 firebase 项目:

据我所知,google-services.json (Android) 包含 firebase 项目信息和所有相关应用程序(如 "client")。是否支持在此文件中添加第二个 "project_info"?

你为什么不尝试 android 应用程序风格呢? Google 刚刚在播放服务插件 2.0 版中包含了对风格的支持。由于此版本 gradle plugin com.google.gms:google-services:2.0.0-alpha3

你可以做到这一点

app/src/ flavor1/google-services.json flavor2/google-services.json 插件的 3.0.0 版将在这些位置搜索 json 文件(考虑到您有 flavor1 和构建类型 debug):

/app/src/flavor1/google-services.json
/app/src/flavor1/debug/google-services.json
/app/src/debug/google-services.json
/app/src/debug/flavor1/google-services.json
/app/google-services.json

即使使用 flavorDimensions,这对我也很有效。我在一个维度上有免费和付费,在另一个维度上有模拟和生产。我还有 3 种构建类型:调试、发布和暂存。

有多少 google-services.json 文件将取决于您项目的特点,但每个 Google 项目至少需要一个 json 文件。

如果您想了解有关此插件如何处理这些 json 文件的更多详细信息,请点击此处:https://github.com/googlesamples/google-services/issues/54#issuecomment-165824720

Link 到官方文档:https://developers.google.com/android/guides/google-services-plugin

然后去这里查看这个插件的最新版本:https://bintray.com/android/android-tools/com.google.gms.google-services/view