I'm preparing an app which needs to call the dialer app. How do I go about calling the Dialer app from my app.
My app is being written in EFL.
If you are working with EFL apps in Tizen, use the following:
service_h service;
service_create(&service);
service_set_package(service, "com.service.call");
service_set_operation(service, "http://tizen.org/appcontrol/operation/main");
service_add_extra_data (service, "launch-type", "MO"); Addtional Data as with Intents
service_send_launch_request(service, NULL,NULL );
service_destroy(service);
This and in your application manifest, add
<permit>
<smack permit="com.samsung.w-launcher-app" type="rw"/>
</permit>
and in your application xml, use this:
<privileges>
<privilege>http://tizen.org/privilege/application.launch</privilege>
</privileges>