Created
January 6, 2021 13:32
-
-
Save Maxim-Kolmogorov/61f8f908f830f033525aa660ba621f99 to your computer and use it in GitHub Desktop.
Tutorial: Cordova plugin in Swift. Part 2.
This file contains hidden or 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
var exec = require('cordova/exec'); | |
exports.echo = function(arg0, success, error) { | |
exec(success, error, 'EchoTest', 'echo', [arg0]); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment