Mobile DB is not updating

I am using Couchbase lite for android. When I update any value on Couchbase server, it directly reflect in my sync gateway. After this I used to fetch data in Mobile using puller.start. When I pull the data in Android, it doesn’t updated and sync_gateway used to have new data, Kindly suggest the way to update the data from sync_gateway to mobile db.

@sidh007 unless you use bucket shadowing (which is not recommended), you can’t write directly to CB Server and have it pull to CB Lite.

In order to handle replication and conflict resolution, CB Lite and Sync Gateway require extra meta-data not normally used with CB Server. The recommended approach is to channel all data changes through Sync Gateway, and use CB Server as a read-only data store.