将google-services.json文件放在博览会项目中的哪里?

时间:2020-07-27 05:22:22

标签: firebase react-native expo

我正在Expo中创建一个项目,并希望将Firebase添加为实时数据库。和我遵循的Firebase文档。有一个google-services.json文件需要放置在我的expo项目中。但是我似乎找不到在哪里放置它的路径。 有人可以帮我吗?

1 个答案:

答案 0 :(得分:0)

您可以将其保留在根目录或任何其他文件夹中。

您只需要确保在app.json键内的googleServicesFile文件中提供正确的路径

{
  "expo": {
    ....
    ...
    "android": {
      // The package you used with your Firebase app
      "package": "example.expo.googlesignin",
      // Optional path to the Android file generated by Firebase
      "googleServicesFile": "./google-services.json"
    }
  }
}

进一步了解official document