I am porting android app to BB 10.I am not able to retrieve IMEI number from this android porting application ,Is there any way i can use PhoneGap script file in android app ,by creating a local html and using java script to retrieve the IMEI number using Phone Gap using the below concept
http://developer.android.com/guide/webapps/webview.html#BindingJavaScript
Presently, I tried using javascript below to retrieve IMEI no
<script type="text/javascript" charset="utf-8" src="js/phonegap.js"></script>
</head>
<script type="text/javascript">
function showAndroidToast(toast) {
Android.showToast('kkkkkkk');
var idno = device.uuid ;
var string = device.version;
Android.showToast('idno' + string);
Android.showToast('string ' + idno);
toast = toast + idno;
Android.showToast(toast);
}
</script>
I am getting the value of null,I am testing it in BB 10 dev Alpha device.
Is there any other workaround for it?