Xcode线程1 SIGABRT上的Firebase通知错误

时间:2017-07-18 10:00:05

标签: ios xcode firebase firebase-notifications

我使用Ionic Framework创建了一个应用程序。

在iOS / Xcode上:我在Xcode上构建(成功)我的应用程序时出现错误。

此错误发生在main.m上:

  

"线程1:信号SIGABRT"

这个错误来自哪里?如何解决?

在我的所有异常断点" objc_exception_throw in libobjc.A.dylib"和libc ++中的" _cxa_thrpw abi.dylib"

此断点强调线路" FIRApp配置]; "在我的AppDelegate + FirebasePlugin.m

Screen of Xcode

2 个答案:

答案 0 :(得分:0)

您是否忘了将GoogleService-Info.plist文件添加到项目中,或者您的文件名称与上面的名称不同?

如果您的文件名称不同,则:

    NSString *filePath = [[NSBundle mainBundle] pathForResource: yourFileName ofType:@"plist"];
    FIROptions *options = [[FIROptions alloc] initWithContentsOfFile:filePath];
    [FIRApp configureWithOptions:options];

答案 1 :(得分:0)

此错误是由GoogleService-Info.plist引起的,因为它是空的。