I created first simple iOS app using Xamarin & Sqlite database as backend. Everything works fine, now my next step is to figure out how to make data stored in sqlite available on more than 1 user's devices. Since sqlite database is stored locally on user's device, do i need to code and syncing or just rely on user to enable icloud and data just sync itself? My understanding on this is still entirely muddy. If I need to write code to do syncing, could you give some example code? You help is greatly appreciated. -Thanks
Below is code i used to create database:
var fileName = "TrackItem.db3";
var documentsPath = Environment.GetFolderPath(Environment.SpecialFolder.Personal);
var libraryPath = Path.Combine(documentsPath, "..", "Library");