Reputation: 24857
I have an Android app that stores user specific data to the users Google Drive account so it can be synced across multiple devices. This works great except for when one device uploads changes and another has yet to check for changes. I would like to hook in Google Cloud Messaging to send a message down to notify other devices that they should pull in the new data. Now this would be easy if I was managing a backend server but I don't have access to the Drive services to include this. Is there any way to accomplish this currently?
Upvotes: 0
Views: 382
Reputation: 41643
Push notifications via webhook are currently being worked on. If you would like access, you should apply for the Google Drive Early Access Program.
Initially, only notifications to a web server via POST are supported but you could use that to proxy Android notifications. Later, it is expected that 1st party Android notifications will be supported.
Upvotes: 2