From 05cfbf11c2c072e834244ed70fe1af37cca3fe6b Mon Sep 17 00:00:00 2001 From: "ADELL\\adamk" Date: Fri, 24 Oct 2025 09:40:31 +0200 Subject: [PATCH] BD-6424 Add dwell event feature. --- docs/Point SDK/Android/Geo-triggering.md | 12 ++++++++---- docs/Point SDK/Android/Quick Start.md | 2 +- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/docs/Point SDK/Android/Geo-triggering.md b/docs/Point SDK/Android/Geo-triggering.md index 4263f9ab..7d22b4c2 100644 --- a/docs/Point SDK/Android/Geo-triggering.md +++ b/docs/Point SDK/Android/Geo-triggering.md @@ -88,15 +88,19 @@ class ExampleGeoTriggerReceiver : GeoTriggeringEventReceiver() {     override fun onZoneInfoUpdate(context: Context) {        // Notification that the local cache of zones has been updated // and Zones can be fetched from ServiceManager getZonesAndFences() API -     } +    }     override fun onZoneEntryEvent(entryEvent: GeoTriggerEvent, context: Context) {        // Notification that a zone has been entered/Geoline™ crossed. -     } +    } + + override fun onZoneDwellEvent(dwellEvent: GeoTriggerEvent, context: Context) { +        // Notification that a dwell event has triggered for a zone. +    } -     override fun onZoneExitEvent(exitEvent: GeoTriggerEvent, context: Context) { +    override fun onZoneExitEvent(exitEvent: GeoTriggerEvent, context: Context) {        // Notification that an exit detection-enabled zone has been exited. -     }    +    }    } ``` diff --git a/docs/Point SDK/Android/Quick Start.md b/docs/Point SDK/Android/Quick Start.md index 88e4ab61..78ee934f 100644 --- a/docs/Point SDK/Android/Quick Start.md +++ b/docs/Point SDK/Android/Quick Start.md @@ -31,7 +31,7 @@ allprojects { ```gradle dependencies {     ... -     implementation 'com.gitlab.bluedotio.android:point_sdk_android:17.2.0' +     implementation 'com.gitlab.bluedotio.android:point_sdk_android:17.4.0' } ```