gpt4 book ai didi

xcode - 如何在 iOS AdHoc 构建上调试 Firebase

转载 作者:行者123 更新时间:2023-12-03 02:22:08 27 4
gpt4 key购买 nike

调试 Firebase 的唯一方法是在启动时传递的参数上传递 -FIRAnalyticsDebugEnabled

它在连接我的 iOS 设备的 Debug模式下工作,但我想部署一个 AdHoc 构建,以便 QA 可以在没有 Xcode 的情况下对其进行测试。

但是当 Xcode 归档构建时,参数似乎没有在启动时传递。

有什么解决办法吗?谢谢。

最佳答案

我找到了解决方案,请在您的应用程序中尝试一下:didFinishLaunchingWithOptions:或覆盖 AppDelegate 的 init:

目标-C:

NSMutableArray *newArguments = [NSMutableArray arrayWithArray:[[NSProcessInfo processInfo] arguments]];
[newArguments addObject:@"-FIRDebugEnabled"];
[[NSProcessInfo processInfo] setValue:[newArguments copy] forKey:@"arguments"];

swift :

var newArguments = ProcessInfo.processInfo.arguments
newArguments.append("-FIRDebugEnabled")
ProcessInfo.processInfo.setValue(newArguments, forKey: "arguments")

关于xcode - 如何在 iOS AdHoc 构建上调试 Firebase,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43754848/

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