Re: [android-developers] Syncing Multiple Devices

2012-05-21 Thread Kristopher Micinski
Good call, I was remiss not to mention this :-) kris On Mon, May 21, 2012 at 12:15 PM, Dianne Hackborn wrote: > There are also Android-specific parts for this -- C2DM is how the various > Google services tell the device that there are changes they need to sync, > and most of the on-device code i

Re: [android-developers] Syncing Multiple Devices

2012-05-21 Thread Dianne Hackborn
There are also Android-specific parts for this -- C2DM is how the various Google services tell the device that there are changes they need to sync, and most of the on-device code is built around ContentProvider and SyncAdapter. On Mon, May 21, 2012 at 8:40 AM, Kristopher Micinski wrote: > Look i

Re: [android-developers] Syncing Multiple Devices

2012-05-21 Thread Kristopher Micinski
Look into both Google App Engine, and "Parse" for web backends which simplify this kind of thing. And yes, your question falls along the very popular line of consistency and replication in distributed systems, there are other services as well, Amazon's S3, etc... kris On Wed, May 16, 2012 at 9:1