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