I need to somehow be notified in realtime when a Calendar resource (like a room) has a change made to it (new event, event deleted, event modified, etc.) Now, I know the Google Calendar API allows registration of notifications (https://developers.googleblog.com/2013/07/google-calendar-api-push-notifications.html). The problem is, this requires the URL of a server to receive the notification in JSON. I don't have a server! I'm only writing an Android app - there is no third component like in the linked example.
Is there any way to set up a notification directly to my Android app, like with Google Cloud Messaging or something?
Thanks!