user1802251
user1802251

Reputation: 83

Google Drive Android API Change Notifications not working

I am using Google Drive Android API sample and in that sample i am able to create file and folder in Drive but if i want to monitor change events for a file which is cretaed by this app then it is not working.

https://github.com/googledrive/android-demos in this sample there is one activity to receive notfiications for change event in a file, which is not working.

I am not seeing any notification when i changed metadata of selected file from web.

Upvotes: 1

Views: 697

Answers (1)

Cheryl Simon
Cheryl Simon

Reputation: 46844

Changes from the web are not instantaneously reflected on the device. You will get notified when the device finds out about the change.

You can speed up that process by calling requestSync.

Upvotes: 1

Related Questions