#include <app_control_internal.h>
#include <app_common.h>
#include <aul.h>
+#include <aul_rpc_port.h>
#include <dlog.h>
#include <Ecore_Wl2.h>
#include <bundle_cpp.h>
tizen_base::Bundle data(b);
std::string comp_id = data.GetString(AUL_K_COMPONENT_ID);
std::string inst_id = data.GetString(AUL_K_INSTANCE_ID);
+ std::string rpc_port;
auto& mgr = internal::ComponentManager::GetInst();
LOGD("component(%s), instance(%s)", comp_id.c_str(), inst_id.c_str());
switch (type) {
case AUL_START:
+ rpc_port = data.GetString(AUL_K_RPC_PORT);
+ if (rpc_port.empty())
+ mgr.Resume(inst_id);
mgr.Resume(inst_id);
mgr.Start(comp_id, inst_id, b);
break;