0

I create an app with the Ionic Framework.

On IOS / XCode : I have an error that appear when I build (with succeed) my app on XCode. This error is on the main.m "Thread 1 : signal SIGABRT"

Someone know where did this error come from? How to resolve it ?

In my all exceptions breakpoint "objc_exception_throw in libobjc.A.dylib" and "_cxa_thrpw in libc++abi.dylib"

This breakpoint emphasizes the line "[FIRApp configure]; " in my AppDelegate+FirebasePlugin.m

Screen of my main.m

Screen of AppDelagate+FirebasePlugin.m

Thanks in advance !

Caroline
  • 61
  • 1
  • 9

1 Answers1

2

This can be a lot of things happening, check:

  • That your AppDelegate is called "AppDelegate" in this case.
  • Default Storyboard
  • Inside storyboard if you have a InitialViewController
  • Activate breakpoint "AllExceptions" to see if you can have more information
Pedro Pinho
  • 652
  • 3
  • 6
  • Ok thanks ! I have in my all exceptions breakpoint "objc_exception_throw in libobjc.A.dylib" and "_cxa_thrw in libc++abi.dylib" – Caroline Jul 18 '17 at 08:54
  • Have you tried this? https://stackoverflow.com/questions/1163981/how-to-add-a-breakpoint-to-objc-exception-throw – Pedro Pinho Jul 18 '17 at 09:46
  • Yes This breakpoint emphasizes the line "[FIRApp configure]; " in my AppDelegate+FirebasePlugin.m. You can see the screen of it in my question. – Caroline Jul 18 '17 at 10:03
  • I think it's a problem between Firebase and XCode because on Android device and Android Studio it works. – Caroline Jul 18 '17 at 10:05
  • Yes because I know what is the problem but I can't solve it. Thank you for your help ! – Caroline Jul 18 '17 at 10:07
  • @Caroline care to share what your answer was? – DevShadow Nov 11 '17 at 21:15