FIRApp.Configure Crashing App

时间:2016-08-20 20:32:39

标签: swift firebase

我正在使用Xcode和Swift。我的应用程序一直崩溃并说“尚未配置默认应用程序”。但我确实在我的appDelegate中进行了配置。有没有人遇到过这个问题?screenshot

1 个答案:

答案 0 :(得分:6)

我使用AppDelegate中的override init()方法配置Firebase。 Firebase文档以didFinishLaunchingWithOptions方法显示配置,但我还没有在我的应用中使用该方法。

import UIKit
import Firebase

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

    var window: UIWindow?

    override init() {
        FIRApp.configure()
    }

    func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
        return true
    }
}