We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
I would like to know if there is a problem with this 7.1.4 android version as I keep having this issue in my chrome://inspect console:
deviceready has not fired after 5 seconds. cordova.js:1219 Channel not fired: onPluginsReady cordova.js:1212 Channel not fired: onCordovaReady
I have disabled all the plugins, same problem.
I am using vue.js with Cordova:
import 'babel-polyfill'; import Vue from "vue"; import App from "./App.vue"; import Vuetify from "vuetify"; import router from "./router"; import { store } from "./store"; import "./registerServiceWorker"; import "vuetify/dist/vuetify.min.css"; import "material-design-icons-iconfont/dist/material-design-icons.css"; Vue.use(Vuetify); Vue.config.productionTip = false; if ( navigator.userAgent.match(/(iPhone|iPod|iPad|Android|BlackBerry|IEMobile)/) ) { document.addEventListener("deviceready", onDeviceReady, false); } else { onDeviceReady(); //this is the browser } function onDeviceReady() { new Vue({ router, store, render: h => h(App) }).$mount("#app"); }
I have also tried directly without condition document.addEventListener("deviceready", onDeviceReady, false);
document.addEventListener("deviceready", onDeviceReady, false);
Same issue.
Any idea why can cause this please?
Thank you.
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
Please create a minimal reproduction example based on recent version of Cordova, as we do not support old Cordova releases. See also this minimal reproducible example on StackOverflow.
Followup questions are fine, but no “+1” comments please. To upvote the issue, please do the following:
1: Click on the smiley thing on the description, like you can see in this mini-screenshot:
2: Then click on your desired reaction, like one of these:
Closing as the requested information was not provided.
how did you manage to solve this problem?
No branches or pull requests
Hello,
I would like to know if there is a problem with this 7.1.4 android version as I keep having this issue in my chrome://inspect console:
I have disabled all the plugins, same problem.
I am using vue.js with Cordova:
I have also tried directly without condition
document.addEventListener("deviceready", onDeviceReady, false);
Same issue.
Any idea why can cause this please?
Thank you.
The text was updated successfully, but these errors were encountered: