murlee patle
murlee patle

Reputation: 27

Location client server tracking system

I am making a project to track the school bus and want to sent the current bus location to parents' mobile device.

I am looking for a way to broadcast the location of one device to other devices in a pre-defined group.

Is it possible to communicate with all of the applications in the group without having to set up my own server/host/database?

it's possible to get location of another app device?

Upvotes: 0

Views: 224

Answers (1)

You can use push notifications for this.

It is possible to use Firebase Cloud Messaging (which is the new replacement for Google Cloud Messaging) to broadcast a message to several devices. You can see a complete walkthrough here. You'll probably be particularly interested in topic messaging. You could also do the same thing with Google Cloud Messaging, but keep in mind that that service is deprecated.

There are other push notification services as well (for example, through Amazon Web Services).

This kind of a solution generally doesn't require that you maintain your own server.

Please also see this answer for other options.

Upvotes: 1

Related Questions