gpt4 book ai didi

ios - 多个 GoogleService-Info 支持

转载 作者:可可西里 更新时间:2023-11-01 05:25:55 30 4
gpt4 key购买 nike

我在 Firebase 中将我的 Dev 和 Prod 方案注册为不同的应用程序。我希望它们是分开的,每个都有唯一的包 ID。我正在使用 #if dev 来确定它是开发方案还是产品方案。我如何使用该方案的专用 plist 初始化 firebase?

最佳答案

只需使用 [FIRApp configureWithOptions:]

NSString *firebasePlist = [[NSBundle mainBundle] pathForResource:@"GoogleService-Info" ofType:@"plist"];

#if STAGING
firebasePlist = [[NSBundle mainBundle] pathForResource:@"GoogleService-Info-DEV" ofType:@"plist"];
#endif

FIROptions *options = [[FIROptions alloc] initWithContentsOfFile:firebasePlist];
[FIRApp configureWithOptions:options];

关于ios - 多个 GoogleService-Info 支持,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38728809/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com