I am not able to configure the Cordova SQLite Storage plugin. The steps I follow are:
phonegap plugin add https://github.com/litehelpers/Cordova-sqlite-storage
AndroidManifest.xml :
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Then I'll make the call:
var db = window.sqlitePlugin.openDatabase({name: "my.db", location: 1});
There you give an error, stating that you are not reporting that the database could not be opened. I do not know if any configuration is missing.
Has anyone ever been through anything like this?