How to implicit launch of browser
This code shows how to launch browser with default browser other than explicit specify the app name for browser.
app_control_h app_control;
app_control_create(&app_control);
app_control_set_operation(app_control, APP_CONTROL_OPERATION_VIEW);
app_control_set_uri(app_control, "http://www.google.com");
if (app_control_send_launch_request(app_control, NULL, NULL) == APP_CONTROL_ERROR_NONE)
{
//code for successfull load web site
}
else
{
//Code for log error.
}
app_control_destroy(app_control);