App is crashing can not see why. Please assist
Xcode 11, iOS 13, Unable to find the cause of crash
When confronted with a crash report like this you need to symbolicate it. See Adding Identifiable Symbol Names to a Crash Report.
The specific crash you’re seeing, a SIBABRT with a Last Exception Backtrace section, indicates that your app crashed with an unhandled language exception.
I symbolicated your app, as much as I can, and this is what I see in the Last Exception Backtrace section:
Frame 8 suggests that WebKit is calling your user script handler. Frames 7 through 3 are your code, for which I don’t have symbols )-: Frame 2 shows that your code explicitly threw a language exception.
You need to symbolicate this log to uncover the identity of frames 7 through 3 and then see if you can work out why frame 3 threw a language exception.
Share and Enjoy
—
Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@apple.com"
The specific crash you’re seeing, a SIBABRT with a Last Exception Backtrace section, indicates that your app crashed with an unhandled language exception.
I symbolicated your app, as much as I can, and this is what I see in the Last Exception Backtrace section:
Code Block … 2 CoreFoundation … +[NSException raise:format:] + 112 3 CordovaPlugins … 0x000000010038c000 + 134319 4 CordovaPlugins … 0x000000010038c000 + 19107 5 Capacitor … 0x00000001002c8000 + 147131 6 Capacitor … 0x00000001002c8000 + 184731 7 Capacitor … 0x00000001002c8000 + 203755 8 WebKit … ScriptMessageHandlerDelegate::didPostMessage(WebKit::… …
Frame 8 suggests that WebKit is calling your user script handler. Frames 7 through 3 are your code, for which I don’t have symbols )-: Frame 2 shows that your code explicitly threw a language exception.
You need to symbolicate this log to uncover the identity of frames 7 through 3 and then see if you can work out why frame 3 threw a language exception.
Share and Enjoy
—
Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@apple.com"