cordova-tutorial icon indicating copy to clipboard operation
cordova-tutorial copied to clipboard

Cordova Tutorial

Results 14 cordova-tutorial issues
Sort by recently updated
recently updated
newest added

The plugin names have since been renamed from org.apache.cordova.x to cordova-plugin-x, and it throws a funny error message out onto the console: `WARNING: org.apache.cordova.console has been renamed to cordova-plugin-console. You...

I believe ``` cordova plugin add org.apache.cordova.device cordova plugin add org.apache.cordova.console ``` on [this page](http://ccoenraets.github.io/cordova-tutorial/create-cordova-project.html) should be changed to: ``` cordova plugin add cordova-plugin-device cordova plugin add cordova-plugin-console ```

How to Implement One Time Password in cordova project and what are the API's need to achieve OTP. Please Help

Thank you very much for the tutorial. The replaced commands warned that they were deprecated and should be replaced by the replacements in the new branch.

Hi Christophe, is it possible to retrieve the data with a remote JSON? I struggle with the delay it gives when getting the data from a remote file, because the...

A link is broken in (Module 6: Avoiding the 300ms Click Delay)[http://ccoenraets.github.io/cordova-tutorial/avoid-300ms-delay.html], in `More information here.` Good tutorial!

Parts with referencing this are completely wrong imo... you have: ``` navigator.camera.getPicture( function(imgData) { $('.media-object', this.$el).attr('src', "data:image/jpeg;base64,"+imgData); }, function() { alert('Error taking picture', 'Error'); }, options); return false; }; ```...

I have created a repo for example code at each step, with branches for milestone1 to milestone14: https://github.com/lucasgonze/cordova-tutorial-examples It helped me just to be orderly in creating this, and it...