Open application
Open application with specified ID
// PRIVILEGE needed to be set in tizen-manifest.xml:
// http://tizen.org/privilege/appmanager.launch
#include <app_manager.h>
#include <dlog.h> // for logging purposes
void
open_app(char* app_id) {
if(app_manager_open_app(app_id) == APP_MANAGER_ERROR_NONE) {
LOGI("Application with ID: %s launched", app_id);
}
}