Zeeshan
Zeeshan

Reputation: 4244

Application crashes after install from Appstore. Google Analytics sent me crash report of instaces <redacted>

I am struck in some problem. When i Make a AD-Hoc build and run it on My iPhone it don't crash , It also don't crash in simulator and when run on device from Xcode. Infact it never crashed for almost one week before its Release on APPStore.

But after publishing application on App store it crashes giving me this error.

NSInvalidArgumentException Trace: <redacted> OrderingApp OrderingApp OrderingApp OrderingApp <redacted> <redacted> <redacted> <redacted> <redacted>

I have enabled [GAI sharedInstance].trackUncaughtExceptions = YES;

Has anybody solved it. Need help. Thanks. Highly appreciated.

Upvotes: 2

Views: 1226

Answers (1)

Egist Li
Egist Li

Reputation: 634

Since the debug symbols (dSYM) are removed from the released version of app, and Google Analytics don't have the dSYM, so they could only provide the redacted crash reports.

One possible solution is to check the crash report on iTunes Connect, if there's some reports available, you can download and re-symbolicate them by yourself.

For detailed instruction of re-symbolication, check http://aasims.wordpress.com/2011/05/10/how-to-symbolicate-iphone-crash-reports/ this.

Basically, you will use symbolicatecrash command, and you will need dSYM of the released app. You should be able to find the dSYM folder in the archived app (APP_NAME.xcarchive/dSYMs).

--

And you can consider integrating with TestFlight SDK which supports auto-symbolication if you provide the dSYM in your next release.

Upvotes: 2

Related Questions