Hi,
Following Common Application Control description I'm trying to do a web search.
app_control_create(&app_control); app_control_set_operation(app_control, APP_CONTROL_OPERATION_SEARCH); app_control_add_extra_data(app_control, APP_CONTROL_DATA_TEXT, "Text to search"); app_control_send_launch_request(app_control, NULL, NULL); app_control_destroy(app_control);
On Emulator it's working fine however on real device (Z3) only web browser is opened but web searching is not being performed.
Anyone know how to resolve this?
Thanks