Phonegap Android Native Function Not Getting Called On Button Click
To share the data over Email i had done this in android native code, and on 'onClick' of hmtl button email function has to be called. but here the Email function is not fired up, a
you have done big mistake to add cordova-2.4.0.jar file but there you need to add cordova-2.4.0.js file
You have done
<scripttype="text/javascript"charset="utf-8"src="libs/cordova-2.4.0.jar">
you need to replace with
<scripttype="text/javascript"charset="utf-8"src="cordova-2.4.0.js">
Post a Comment for "Phonegap Android Native Function Not Getting Called On Button Click"