Listeners
Retrieving the Last Location
gizoAnalysis.didUpdateLocation = { location ->
Log.d("tag", "Latitude: ${location?.latitude}, Longitude: ${location?.longitude}, Timestamp: ${location?.time}")
}Start of a Recording
gizoAnalysis.didStartRecording = {
Log.d("tag", "Recording started")
}End of a Recording
gizoAnalysis.didStopRecording = {
Log.d("tag", "Recording stopped")
}Start of Upload to GIZO Platform
End of Upload to GIZO Platform
Detection of a Crash
End of Upload of a Crash of to the GIZO Platform
Last updated