Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions docs/Point SDK/Android/Geo-triggering.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
    }   
   }   
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/Point SDK/Android/Quick Start.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
```

Expand Down