Detecting Vehicle Crashes
// Signature
- (void)setCrashListener:(void (^)(NSDate *date, CLLocation *lastKnownLocation))crashCallback;
// Usage
[[SENTSDK sharedInstance] setCrashListener:^(NSDate *date, CLLocation *lastKnownLocation) {
// Handle vehicle crash event
}];sentianceSdk.setCrashCallback(new CrashCallback() {
@Override
public void onCrash(long time, @Nullable Location lastKnownLocation) {
// crash detected
}
});Last updated