Crashlytics don’t send crash report when there is another crash report (Umeng)

后端 未结 1 1238
忘了有多久
忘了有多久 2021-01-03 15:13

I’ve implemented Crashlytics (2.2.4) in my iOS app for crash report collection. I also implemented another third-party component (Umeng) for other data collection. However,

1条回答
  •  轮回少年
    2021-01-03 15:41

    Self answer. I got an advice from another developer on Umeng's support forum, which is to put the set report disable method before the startWithKey method. The trick is to use this method BEFORE not after the startWithKey. I am trapped by this pitfalll for two days.

    [MobClick setCrashReportEnabled:NO];
    [MobClick startWithAppkey:YOURKEY reportPolicy:YOURPOLICY channelId:YOURCHANNELID];
    

    0 讨论(0)
提交回复
热议问题