Hi,
in Geolocation.kt I see setMinUpdateIntervalMillis(5000)
.
We experience slow updates on Android, so I assume this is the issue. Is there a reason it is set to 5000? Is there a way to change this number, without forking this repo?
val locationRequest = LocationRequest.Builder(10000)
.setMaxUpdateDelayMillis(timeout)
.setMinUpdateIntervalMillis(5000)
.setPriority(prio)
.build()