func application(_ app: UIApplication, open url: URL, options: [UIApplicationOpenURLOptionsKey : Any] = [:]) -> Bool {
//You should handle the call back here.
print(url)
return true
}
这种方法有效,但是当我打开火力基地时;
FirebaseApp.configure()
这种方法不起作用,请帮助任何想法?
我认为同样的崩溃iOS 应用程序崩溃时我编写 FirebaseApp.configure((
遇到同样的问题,我不确定我应该如何处理它,但是如果您转到 info.plist 并将FirebaseAppDelegateProxyEnabled
设置为布尔NO
,它再次开始工作。