I thought of sending location based push notification which when clicked give the person points https://documentation.onesignal.com/docs/location-triggered-event in that case if notification were cleared the person will not get reward, how can i give the person reward automatically when he reaches the destination.
Asked
Active
Viewed 71 times
2 Answers
0
Android's LocationManager allows your app to register for Proximity Alerts. When the device enters a geographic location of interest (as defined by your app), your app will be notified via an intent sent to a BroadcastReceiver in your app.

EJK
- 12,332
- 3
- 38
- 55
0
Another alternative you can use is this, https://developer.android.com/training/location/geofencing . Note that it has a 100 geofence limit.

Bits
- 46
- 1
- 9