我正在使用 RNFirebase 将 firebase 分析集成到 react-native ios 应用程序中,但我不确定区分 prod/dev 环境的最佳方法是什么。
我在 Swift 上找到了一种可能的解决方案
let filePath = Bundle.main.path(forResource: "MyGoogleService", ofType: "plist")
guard let fileopts = FirebaseOptions(contentsOfFile: filePath!)
else { assert(false, "Couldn't load config file") }
FirebaseApp.configure(options: fileopts)
但我正在寻找某种 RNFirebase api 来支持这一点。有什么想法吗?提前致谢