gpt4 book ai didi

ios - 多个 GoogleService-Info 支持

转载 作者:行者123 更新时间:2023-11-30 13:01:56 26 4
gpt4 key购买 nike

我在 Firebase 中将开发方案和生产方案注册为不同的应用。我希望它们是分开的,每个都有唯一的捆绑 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/39822325/

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