How to call other EFL app from your EFL app in Tizen -
How to call other EFL app from your EFL app in Tizen -
i'm preparing app needs phone call dialer app. how go calling dialer app app.
my app beingness written in efl.
if working efl apps in tizen, utilize 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 info intents service_send_launch_request(service, null,null ); service_destroy(service);
this , in application manifest, add
<permit> <smack permit="com.samsung.w-launcher-app" type="rw"/> </permit>
and in application xml, utilize this:
<privileges> <privilege>http://tizen.org/privilege/application.launch</privilege> </privileges>
tizen efl
Comments
Post a Comment