I am syncing using syncadpter, custom content provider, account manager services. I am a bit stuck with the synchronization implementation. I have been greatly helped by the Sample SyncAdapter example for Contacts which stores the mobile device ids (_id in android) in the server tables so as when it responds with the dirty list, the device knows whether to add or update content.
The question I have is whether this pattern means adding a new server side column for every client I might support in the future (eg iphone data ids - I'm not familiar with its SDK).
Am I missing some simplification?
Alex