Phone Application Control
How to launch a dial screen from your application
- using aliased application ID of "tizen.phone"
var phoneNumber = "tel:+919867123456";
var appControl = new tizen.ApplicationControl("http://tizen.org/appcontrol/operation/dial", phoneNumber);
tizen.application.launchAppControl(appControl, "tizen.phone",
function() {
console.log("launch appControl succeeded");
}, function(e) {
/* Error handling */
}, null);