How to remove NSInvalidArgumentException Trace: <redacted> <redacted> .. My application name .. <redacted> .. from Google Analytics?

Smart peoples !!

I included an uncaught exception in my iOS app:

[GAI sharedInstance].dispatchInterval = 120; [[[GAI sharedInstance] logger] setLogLevel:kGAILogLevelVerbose]; id<GAITracker> tracker = [[GAI sharedInstance] trackerWithTrackingId:@"UA-########-#"]; [GAI sharedInstance].defaultTracker = tracker; [GAI sharedInstance].trackUncaughtExceptions = YES; 

In Google Analytics, I can click "Failure and exceptions" in the "Behavior" section and see a couple of crash reports, but they look like this:

ALL "EXCLUSION DESCRIPTION: NSInvalidArgumentException Trace: <redacted> <redacted> _CF_forwarding_prep_0 <redacted> 0x0005f4d3 My Application Name <redacted> <redacted> <redacted> <redacted>

What with all the "edited"? How can I see the actual exception message and stack trace? As is, this post is not very helpful.

Also, my client did not inform me of any failures. So how can I remove this exception from Google Analytics? Any help would be very noticeable.

Thanks at Advance !!

+8
ios google-analytics crash-reports google-analytics-api
source share
1 answer

I had the same question as before, and then somewhere in the Google groups that I saw this: according to the Google Analytics documentation / contract (I will insert this link when I find it), they won’t collect / show any or user data, They will just give you statistics on how many crashers happened, and what crasher is, like NSInvalidArgumentException, etc. You do not have enough configuration settings. The maximum you can do is add a secondary size to see which screen is affected. To get the full stack trace, we turned on crashlytics (it's free from Twitter).

0
source share

All Articles