I am facing an issue to set the Password attribute in the Sqlite connection string in Xamarin Forms Android application. It is working fine in Xamarin Forms iOS. I have used the following `
connection.ConnectionString = new SqliteConnectionStringBuilder(connection.ConnectionString)
{ Password = password }
.ToString();
connection.Open();
` enter image description here You specified a password in the connection string, but the native SQLite library you're using doesn't support encryption.
I am using Microsoft.Data.Sqlite 3.1.5 nuget package on my Xamarin Forms application.
Any help would be appreciated.