-
Notifications
You must be signed in to change notification settings - Fork 715
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Getting message: Native: tried accessing the SQLite plugin but it's not installed. ionic ios emulator 10 #594
Comments
I suspect there is something wrong with your installation. I suggest you try cordova-plugin-dialogs and maybe cordova-plugin-file first. I am busy with an urgent assignment and can take a look after 1-2 weeks. Marked community-help-welcome. For priority support please contact [email protected] or [email protected]. |
Did you ever find solution for this? |
Yes, indeed I tried cleaning and re-installing all plugins and it worked.
Thanks,
…On 9 January 2017 at 16:36, acessoftware ***@***.***> wrote:
Did you ever find solution for this?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#594 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AADJT2ZumscSnfJgLxPN_wVDJIsEHJRXks5rQkXQgaJpZM4LJAgz>
.
|
for me it happens only when I run it with ionic run android --prod and it works fine with ionic run android but it takes 15-18 seconds to load. Did you have the same problem? |
@acessoftware Same problem here |
To get help from the community I suggest you guys post a minimal reproduction sample. |
Hi @brodybits, by default the attribution of rootPage on ionic 2 is on declaration of var rootPage. I can solve my problem moving the rootPage attribution to the platformReady on app.component
|
Thanks @rodineijf. I just raised #613 to document this and related items. |
@BasantPandey You're running on your browser or on the phone? |
@rodineijf I am using chrome browser emulator. As per my knowledge the old version was working well on chrome browser emulator. |
This plugin does not support the Browser platform. I hope to add it in the near future. |
The most common reason for this error is calling the plugin too early before the app has been fully loaded. Use the platform.ready() command to make sure everything is loaded ... this.platform.ready().then(() => { // add your code here }); |
@pbreuss you have reason, the plugin is ready for use once the current platform is ready. In a browser the plugin storage doesn't work because it needs an operating system to access. platform.ready().then(() => { |
I was able to use not only to interact to SQLite but also able to manage it under browser by falling into WebSQL. In addition, extended as well to MySQL. |
Even inside platform.ready() I'm facing the same erro.. "plugin_not_installeed"... running on my android device. |
same issue anyone found solution please help |
any solution to this? |
It works fine in android both emulator and device.
Plugin is installed for both platforms
The text was updated successfully, but these errors were encountered: