Reputation: 75
i have 2 type of end users of my android Family Locator application. 1 is parent and other is child. i want to know is there any way that when child's android mobile enters or exits the Geo fence (already created), notification should appear on parent's android mobile, not on child's own mobile. Please give suggestions. Thank you in advance
Upvotes: 3
Views: 278
Reputation: 1297
You can use push notifications to achieve this. When the child enters or exit the geofence receives the notification and then the child app sends a request to a backend. Then when the backend receives this notification identifies who is the parent of this child based on the information sent and then it can send a push notification to the parent app.
If you don't want to implement a backend for this, you could try using this service that has SDK for Android and iOS:
Upvotes: 1