Hi ,
i am trying to get System Information from phoe. i am getting all the system information except IMEI no , this is th code i am using
tizen.systeminfo.getPropertyValue("CELLULAR_NETWORK", getLocn);
function getLocn(cellular) {
localStorage.setItem("cellId", cellular.cellId+"-"+cellular.mcc +"-"+ cellular.mnc+"-"+ cellular.lac+"----Gsm");
alert(cellular.cellId+"-"+cellular.mcc +"-"+ cellular.mnc+"-"+ cellular.lac); // i am getting all these values
alert("mimi"+cellular.imei); //this is not working
tizen.systeminfo.getPropertyValue("DISPLAY", onSuccessCallback);
}