parse.com 1.6 crash analytics not working

后端 未结 2 1628
再見小時候
再見小時候 2021-01-24 07:29

Parse version 1.6 Crash analytics are not working.

I am not able to see the crash logs in dashboard. Configured my app according to this:

https://parse.com/docs/

2条回答
  •  天命终不由人
    2021-01-24 07:38

    did you initialized crash reporting in app ? ;

    // Enable Crash Reporting
    [ParseCrashReporting enable];
    
    // Setup Parse
    [Parse setApplicationId:@"parseAppId" clientKey:@"parseClientKey"]; 
    

    or if you are using Swift

    // Enable Crash Reporting
    ParseCrashReporting.enable();
    
    // Setup Parse
    Parse.setApplicationId("parseAppId", clientKey:"parseClientKey")
    

    If not please do

    You can always follow these step by step Tutorial on how to set it up

    hope it helps.

提交回复
热议问题