From ddf125a1cdb9d1e435733ea9ea18e26c01521308 Mon Sep 17 00:00:00 2001 From: Hwankyu Jhun Date: Sat, 12 Mar 2016 16:32:40 +0900 Subject: [PATCH] Add 'splash-screen-display' attribute for uiapplication Requires: https://review.tizen.org/gerrit/#/c/61996/ https://review.tizen.org/gerrit/#/c/61995/ Change-Id: Iddcb25177182348fcff9644a9dc4d7a1af61a939 Signed-off-by: Hwankyu Jhun --- src/common/step/step_parse_manifest.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/step/step_parse_manifest.cc b/src/common/step/step_parse_manifest.cc index 005ecf1..cfa0961 100644 --- a/src/common/step/step_parse_manifest.cc +++ b/src/common/step/step_parse_manifest.cc @@ -448,6 +448,8 @@ bool StepParseManifest::FillUIApplication(manifest_x* manifest) { ui_app->ambient_support = strdup("false"); ui_app->package = strdup(manifest->package); ui_app->support_disable = strdup(manifest->support_disable); + ui_app->splash_screen_display = + strdup(application.app_info.splash_screen_display().c_str()); manifest->application = g_list_append(manifest->application, ui_app); if (bf::path(application.app_info.exec().c_str()).is_absolute()) ui_app->exec = strdup(application.app_info.exec().c_str()); -- 2.7.4