Skip to content

Commit

Permalink
'Fix RadarLocationManager to not remove bubble geofence when moving a…
Browse files Browse the repository at this point in the history
…nd updateTracking called from updateTrackingFromMeta
  • Loading branch information
lmeier committed Mar 18, 2024
1 parent c837e2a commit f5d40c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ apply plugin: "org.jetbrains.dokka"
apply plugin: 'io.radar.mvnpublish'

ext {
radarVersion = '3.9.8-beta.5'
radarVersion = '3.9.8-beta.6'
}

String buildNumber = ".${System.currentTimeMillis()}"
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/main/java/io/radar/sdk/RadarLocationManager.kt
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ internal class RadarLocationManager(
this.startLocationUpdates(options.desiredAccuracy, options.desiredMovingUpdateInterval, options.fastestMovingUpdateInterval)
}

if (options.useMovingGeofence && location != null) {
if (options.useMovingGeofence) {
this.replaceBubbleGeofence(location, false)
} else {
this.removeBubbleGeofences()
Expand Down

0 comments on commit f5d40c1

Please sign in to comment.