Last active
November 21, 2020 00:00
-
-
Save flurrydev/b781c0d8c074ebc3613a1262fa84f838 to your computer and use it in GitHub Desktop.
iOS Crash Analytics ObjC
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Enable crash analytics when you start your Flurry session | |
FlurrySessionBuilder *sessionBuilder = [[FlurrySessionBuilder new] withCrashReporting:YES]; | |
[Flurry startSession:@"<< YOUR API KEY HERE>>" withSessionBuilder:sessionBuilder]; | |
//Caught Exceptions | |
[Flurry logError:@"HandledException" message:@"" exception:exception]; | |
//Logged Errors | |
[Flurry logError:@"WebView No Load" message:[error localizedDescription] error:error]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment