Failed to change Google Android notifications in Google Drive

I use the sample Google Drive API for Android, and in this example I can create a file and folder in Drive, but if I want to track change events for a file that is being mounted by this application, then it does not work.

https://github.com/googledrive/android-demos in this example there is one action to get notfiications for a change event in a file that does not work.

I do not see any notification when I changed the metadata of the selected file from the Internet.

+1
android google-drive-sdk google-drive-android-api
Apr 10 '14 at 6:46
source share
1 answer

Changes to the network are not immediately reflected on the device. You will receive a notification when the device detects a change.

You can speed up this process by calling requestSync.

+1
Apr 10 '14 at 15:14
source share



All Articles