APP_CONTROL_OPERATION_SHARE_TEXT is not working in Tizen 3.0

APP_CONTROL_OPERATION_SHARE_TEXT is not working in Tizen 3.0

BY 07 Dec 2017 Native Application Development

Hello,

here is my code, in which i am sharing some text to another application on button click.

app_control_h app_control;
app_control_create(&app_control);
app_control_set_operation(app_control,APP_CONTROL_OPERATION_SHARE_TEXT);
app_control_add_extra_data(app_control,APP_CONTROL_DATA_TEXT,"Hello World!!!");
app_control_set_mime(app_control, "*/*");
app_control_send_launch_request(app_control, NULL, NULL);
app_control_destroy(app_control);

It works properly in Tizen 2.4. But not showing any application on click, while sharing text in Tizen 3.0.

Will anyone plz tell me, what’s wrong with this???

Written by