arielceb commented on issue #1007:
URL:
https://github.com/apache/cordova-android/issues/1007#issuecomment-650566877
i uploaded a sample app. it has 3 buttons
$scope.Button1Click = function () {
console.log("Button1Click call to java");
upsoft.movil.engine.GetUrl(function (res) {
console.log("Button1Click res");
alert("Button1Click callback success");
}, function (err) {
console.log("Button1Click err");
alert("Button1Click callback error");
});
}
$scope.Button2Click = function () {
console.log("Button2Click call to java");
upsoft.movil.engine.DeleteUrlTxt(function (res) {
console.log("Button2Click res");
alert("Button2Click callback success");
}, function (err) {
console.log("Button2Click err");
alert("Button2Click callback error");
});
}
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]