Set default operation for legacy splash screen 57/83257/1 accepted/tizen/common/20160810.161617 accepted/tizen/ivi/20160810.081805 accepted/tizen/mobile/20160810.081652 accepted/tizen/tv/20160810.081708 accepted/tizen/wearable/20160810.081735 submit/tizen/20160810.000849
authorHwankyu Jhun <h.jhun@samsung.com>
Wed, 10 Aug 2016 00:31:22 +0000 (09:31 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Wed, 10 Aug 2016 00:31:22 +0000 (09:31 +0900)
Change-Id: I1d2ada089af222a79b27cbdadbb9027a5891dc92
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
parser/pkgmgr_parser_db.c

index 116f2eb..c2b1477 100644 (file)
@@ -1708,7 +1708,7 @@ static int __insert_application_legacy_splashscreen_info(manifest_x *mfx)
        const char *image_type;
        const char *indicatordisplay;
        const char *orientation;
-       const char *operation = NULL;
+       const char *operation = "launch-effect";
        const char *color_depth = "24"; /* default */
 
        for (app_tmp = mfx->application; app_tmp; app_tmp = app_tmp->next) {
@@ -1794,9 +1794,9 @@ static int __insert_application_metadata_splashscreen_info(manifest_x *mfx)
                                if (operation && operation[1] != '\0')
                                        operation++;
                                else
-                                       operation = NULL;
+                                       operation = "launch-effect";
                        } else if (strcasestr(md->key, "launch_effect")) {
-                               operation = NULL;
+                               operation = "launch-effect";
                        } else {
                                continue;
                        }