Sending Data From Mobile App To Android Wear Delay
I'm trying to sync data between a settings app and a watch face and I'm having no luck. I've tried using a googleApiClient with listeners & onDataChanged and DataMaps, but ther
Solution 1:
Starting with Play Services 8.3, data synchronization using DataApi is batched up and done with a certain frequency which means synchronization of your data can be delayed up to 30 minutes. If you need immediate sync, you need to make sure your request is set as urgent.
Post a Comment for "Sending Data From Mobile App To Android Wear Delay"