user5964945
user5964945

Reputation:

Error While Adding Cordova Plugin "sqlite-connector.jar" not found!"

Error While Adding Sqlite plugin into Ionic project How to solve this? Thanks in advance

Upvotes: 2

Views: 2805

Answers (2)

Manikandan sankar
Manikandan sankar

Reputation: 31

try this

"cordova plugin add cordova-sqlite-storage"

Upvotes: 0

Víctor
Víctor

Reputation: 3039

Dont install like this, use

ionic plugin add cordova-sqlite-storage

Also you need to have installed nodejs globally to allow node-modules to be installed via npm, as seen in their doc

This version uses a before_plugin_install hook to install sqlite3 library dependencies from cordova-sqlite-storage-dependencies via npm.

Upvotes: 2

Related Questions