I started an empty Xcode project, and all I did was add the Firebase framework via Cocoapods and import into the Appdelegate and viewcontroller. When I add FIRApp.configure () to didFinishLoadingWithOptions , I get this error. If I delete this line, but still import the framework, it starts without errors. This happens in an empty project without anything in the storyboard or in viewcontroller.swift.
The console says libC ++ abi.dylib: termination with an uncaught exception of type NSException (11dB)
Xcode 8.2, swift 3
import UIKit import Firebase @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
}
Podfile
end
Henry source share