diff options
author | Daehyeon Jung <darrenh.jung@samsung.com> | 2016-03-02 20:30:51 +0900 |
---|---|---|
committer | Daehyeon Jung <darrenh.jung@samsung.com> | 2016-03-02 20:31:02 +0900 |
commit | 6aeeb21b8091524b4f4868e00a8a3b5c90bfa753 (patch) | |
tree | 598c17127cfde866b9d7de6284a6899a8af2952d | |
parent | 7d1420d37ea0c77f7506ed9a88b83d1f6fad4d98 (diff) | |
download | widget-service-6aeeb21b8091524b4f4868e00a8a3b5c90bfa753.tar.gz widget-service-6aeeb21b8091524b4f4868e00a8a3b5c90bfa753.tar.bz2 widget-service-6aeeb21b8091524b4f4868e00a8a3b5c90bfa753.zip |
set loader id (launch directly)submit/tizen/20160302.122750accepted/tizen/wearable/20160302.225357accepted/tizen/tv/20160302.225342accepted/tizen/mobile/20160302.225324accepted/tizen/ivi/20160302.225413accepted/tizen/common/20160302.194003
Change-Id: I33d0b5964f2d09e66b9fde851d5a04b70ae4db49
Signed-off-by: Daehyeon Jung <darrenh.jung@samsung.com>
-rw-r--r-- | src/widget_instance.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/widget_instance.c b/src/widget_instance.c index 4ef7eb1..9df92db 100644 --- a/src/widget_instance.c +++ b/src/widget_instance.c @@ -29,6 +29,7 @@ #include <sqlite3.h> #include <tzplatform_config.h> #include <aul.h> +#include <aul_svc.h> #include <aul_app_com.h> #include <widget_service.h> @@ -530,6 +531,8 @@ static int __send_aul_cmd(const char *widget_id, const char *instance_id, bundle bundle_add_str(b, WIDGET_K_CLASS, classid); + aul_svc_set_loader_id(b, 1); + ret = aul_launch_app(appid, b); if (!extra) { |