Android - Cordova 3.5.0 Deviceready Not Firing After Installing Media Plugin
Solution 1:
I ran into the same issue.
What worked for me was using a different version of the File plugin found here: https://github.com/onflapp/cordova-plugin-file
Related topic: Cordova File plugin never becomes ready in Android
Solution 2:
for me it got solved by adding cordova.js in index.html( though its not required in ripple)
<scriptsrc="cordova.js"></script>
Solution 3:
I ran into the same and resolved using apache official dev build File plugin:
Funny enough cordova release 1.3.1-dev is more stable then official release 1.2.0 ...
Solution 4:
By now a newer version of the file plugin has been released. You should no longer experience the issue with the updated version (and there is thus no longer a need to downgrade).
Solution 5:
I had a similar issue. deviceReady event was not firing (ionic app on android). Worked after I removed the file plugin v1.2 and then added v1.1 instead.
Post a Comment for "Android - Cordova 3.5.0 Deviceready Not Firing After Installing Media Plugin"