I have just installed Crashlitycs using this official instruction.
I have set Debug Information Format is “DWARF with dSYM File” for both Debug and Release and disab
Another potential cause of crashes not uploading is implementing the Crashlytics delegate without calling the completion handler:
// MARK: CrashlyitcsDelegate
func crashlyticsDidDetectReport(forLastExecution report: CLSReport, completionHandler: @escaping (Bool) -> Void) {
// Last launch we crashed!
}
}
Instead, it should look like this:
// MARK: CrashlyitcsDelegate
func crashlyticsDidDetectReport(forLastExecution report: CLSReport, completionHandler: @escaping (Bool) -> Void) {
// Last launch we crashed!
completionHandler(true)
}
}