Created
July 5, 2018 07:58
-
-
Save molcik/d3f85cbe5f95e737352caf36a0fc5a14 to your computer and use it in GitHub Desktop.
Calling Cordova Android Funtion from Javascript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cordova.exec(function(success) {}, //success callback | |
function(error) {}, //error callback | |
"Example", //class name | |
"YOUR_ACTION_NAME_PARAMETER", //action name | |
["Dog", "Pig", 42, false]); //args |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment