I'm using sqlite-net-pcl for Xamarin Forms / Xamarin Andriod the previous library SQLite.Net-PCL are crashing at run time because its no longer being maintained by it's author as mentioned here .
The problem that i'm facing with sqlite-net-pcl is when creating SQLiteConnectionWithLock
specific with ISQLitePlatform
parameter
new SQLiteConnectionWithLock(ISQLitePlatform, new SQLiteConnectionString(path, true));
Parameter ISQLitePlatform
are interface I tried to implement the interface but I didn't figure out the correct implementation
class SQLitePlatform : ISQLitePlatform
{
ISQLiteApi ISQLitePlatform.SQLiteApi => throw new System.NotImplementedException();
IStopwatchFactory ISQLitePlatform.StopwatchFactory => throw new System.NotImplementedException();
IReflectionService ISQLitePlatform.ReflectionService => throw new System.NotImplementedException();
IVolatileService ISQLitePlatform.VolatileService => throw new System.NotImplementedException();
}