Change the default value of app_splash_screen_display 51/132351/1
authorjongmyeongko <jongmyeong.ko@samsung.com>
Fri, 2 Jun 2017 10:52:38 +0000 (19:52 +0900)
committerjongmyeongko <jongmyeong.ko@samsung.com>
Fri, 2 Jun 2017 10:52:38 +0000 (19:52 +0900)
Currenty, in case of webapps, they can't use the waiting screen feature.
And, for this feature, app_slash_screen_display should be 'true'.
Original design intent is default 'true' if there is no definitions in manifest.

Change-Id: I9ded13d68c87a20d2290eed56bb61b7dc5699d37
Signed-off-by: jongmyeongko <jongmyeong.ko@samsung.com>
parser/src/pkgmgr_parser_db.c

index 5618858..724a09c 100644 (file)
@@ -1614,7 +1614,7 @@ static int __insert_application_info(sqlite3 *db, manifest_x *mfx)
                __BIND_TEXT(db, stmt, idx++, mfx->api_version);
                __BIND_TEXT(db, stmt, idx++, effective_appid);
                __BIND_TEXT(db, stmt, idx++,
-                               __get_bool(app->splash_screen_display, false));
+                               __get_bool(app->splash_screen_display, true));
                __BIND_TEXT(db, stmt, idx++, __get_bool(mfx->system, false));
                __BIND_TEXT(db, stmt, idx++, __get_bool(mfx->removable, false));
                __BIND_TEXT(db, stmt, idx++, mfx->installed_time);