I'm building an cordova app which uses some plugins that need to use different cordova-sqlite-plugins. One plugin needs cordova-sqlite-ext installed, another plugin needs cordova-spatialite-storage.
My problem now is, that I can't get both plugins to run simultaneously. Only the last installed plugin is used. They are both based on cordova-sqlite-storage, so maybe it's a problem that both uses the same syntax (window.sqlitePlugin)? Is it possible to use both plugins with different variables, so I can call the plugin I want to use in my JavaScript code?
Any help / hints / tips are welcome!