06-27-2009 03:13 AM
Is there anything equivalent to this in JEME for making a phonecall .
PhoneArguments call = new PhoneArguments(PhoneArguments.ARG_CALL, phno);
Invoke.invokeApplication(Invoke.APP_TYPE_PHONE, call);
06-27-2009 11:06 AM - edited 06-27-2009 11:07 AM
Try this:
platformRequest("tel:mobileNumber");
for instance:
platformRequest("tel:12345678");
12345678 - is a sample phone number
Also check this link:
http://developers.sun.com/mobility/midp/ttips/plat
04-15-2011 05:23 PM
Hello,
you provided really helpful information and a great link.
I want to ask you, is there any API set to identify the incoming caal in MIDP?
I want to inform user from my APP that a voice call is coming.
Thanks