我開始了一個空白的Xcode項目,我所做的只是通過Cocoapods添加Firebase框架並在Appdelegate和viewcontroller中導入。當我添加FIRApp.configure()到didFinishLoadingWithOptions我得到那個錯誤。如果我刪除該行,但仍然導入框架,它運行沒有錯誤。這發生在一個空白項目中,故事板中沒有任何內容,也沒有viewcontroller.swift。導致「線程1:信號SIGABRT」的Firebase
在它說控制檯的libC++ abi.dylib:與類型NSException的未捕獲的異常 (11分貝)結束
的Xcode 8.2,迅速3
import UIKit
import Firebase
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
FIRApp.configure()
return true
}
func applicationWillResignActive(_ application: UIApplication) {
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
// Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
}
func applicationDidEnterBackground(_ application: UIApplication) {
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}
func applicationWillEnterForeground(_ application: UIApplication) {
// Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
}
func applicationDidBecomeActive(_ application: UIApplication) {
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}
func applicationWillTerminate(_ application: UIApplication) {
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}
}
Podfile
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'dur2' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for dur2
pod 'Firebase/Core'
pod 'Firebase/AdMob'
pod 'Firebase/Messaging'
pod 'Firebase/Database'
pod 'Firebase/Invites'
pod 'Firebase/DynamicLinks'
pod 'Firebase/Crash'
pod 'Firebase/RemoteConfig'
pod 'Firebase/Auth'
pod 'Firebase/Storage'
pod 'SDWebImage'
end
你加googleplist文件? – Ro4ch
您是否爲Firebase添加.plist文件? –
是的,我做了@ Ro4ch – Henry