Detecting Vehicle Crashes
The Sentiance SDK can be configured to detect vehicle accidents/crashes during trips. You can be notified of these crash events by setting a handler as follows:
Sentiance.shared.setVehicleCrashHandler { crashEvent in
// Handle event
}CrashDetectionApi.getInstance(context).setVehicleCrashListener { vehicleCrashEvent ->
}Last updated