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' } ```