App Crashing on the review process

 can't symbolicate the crash report. The drag and drop functions doesn't work. https://developer.apple.com/documentation/xcode-release-notes/xcode-13_1-release-notes#Debugging%C2%A0https://developer.apple.com/forums/thread/691407

my report says "exception" : {"codes":"0x0000000000000000, 0x0000000000000000","rawCodes":[0,0],"type":"EXC_CRASH","signal":"SIGABRT"}, "ktriageinfo" : "VM - Fault hit memory shortage\nVM - Fault hit memory shortage\nVM - Fault hit memory shortage\nVM - Fault hit memory shortage\nVM - Fault hit memory shortage\n", I think the new watchdog of ios aborts the app, because the CPU or memory usage?

I can't wait to get this fixed. Thank you all.

Exception Type:  EXC_CRASH (SIGABRT)

This indicates that your app crashed because some code called abort. The is usually, but not always, caused by an unhandled language exception. And the presence of the Last Exception Backtrace section confirm that.

Last Exception Backtrace:
0   CoreFoundation  … __exceptionPreprocess + 216 …
1   libobjc.A.dylib … objc_exception_throw + 56 …
2   Foundation      … -[__NSConcreteURLComponents initWithURL:resolvingAgainstBaseURL:] + 304 …
3   Foundation      … +[NSURLComponents componentsWithURL:resolvingAgainstBaseURL:] + 44 …
4   OrgCorescore    …
5   OrgCorescore    …
6   OrgCorescore    …
7   OrgCorescore    …
8   OrgCorescore    …
9   OrgCorescore    …
10  OrgCorescore    …
11  UIKitCore       … -[UIViewController _sendViewDidLoadWithAppearanceProxyObjectTaggingEnabled] + 104 …

Frame 11 suggests that the system is calling a view-did-load method on one of your view controllers. Frame 10 through 4 are your code. Frame 3 indicates that your code called an NSURLComponents, which then threw this exception. it’s likely that’s because the URL parameter you passed to the +componentsWithURL:resolvingAgainstBaseURL: was nil.

As to how things got that ways, it’s hard to say. To make progress here you need to symbolicate your code’s stack frames. See Adding Identifiable Symbol Names to a Crash Report.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

The crash report doesn't work on xcode, I see the post about the bug. I tried other ways too, but all failed. I wish someone can walk me through.

App Crashing on the review process
 
 
Q