Skip to content

Commit

Permalink
Send empty array for beacons to trigger exit events (#339)
Browse files Browse the repository at this point in the history
* send empty array for beacons to trigger exit events

* Update RadarVerificationManager.kt

* bump to 3.9.3
  • Loading branch information
york-wei authored Jan 31, 2024
1 parent cfc8597 commit cca7c8f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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.2'
radarVersion = '3.9.3'
}

String buildNumber = ".${System.currentTimeMillis()}"
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/main/java/io/radar/sdk/Radar.kt
Original file line number Diff line number Diff line change
Expand Up @@ -857,7 +857,7 @@ object Radar {
}
})
} else {
callTrackApi(null)
callTrackApi(arrayOf());
}
}
}, false)
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 @@ -634,7 +634,7 @@ internal class RadarLocationManager(
}
})
} else {
callTrackApi(null)
callTrackApi(arrayOf())
}
}
}, cache)
Expand Down
4 changes: 2 additions & 2 deletions sdk/src/main/java/io/radar/sdk/RadarVerificationManager.kt
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ internal class RadarVerificationManager(
}
})
} else {
callTrackApi(null)
callTrackApi(arrayOf())
}
}
},
Expand Down Expand Up @@ -289,7 +289,7 @@ internal class RadarVerificationManager(
}
})
} else {
callTrackApi(null)
callTrackApi(arrayOf())
}
}
},
Expand Down

0 comments on commit cca7c8f

Please sign in to comment.