projects
/
platform
/
core
/
appfw
/
pkgmgr-info.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
50e4884
)
Change the default value of app_splash_screen_display
51/132351/1
author
jongmyeongko
<jongmyeong.ko@samsung.com>
Fri, 2 Jun 2017 10:52:38 +0000
(19:52 +0900)
committer
jongmyeongko
<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
patch
|
blob
|
history
diff --git
a/parser/src/pkgmgr_parser_db.c
b/parser/src/pkgmgr_parser_db.c
index
5618858
..
724a09c
100644
(file)
--- a/
parser/src/pkgmgr_parser_db.c
+++ b/
parser/src/pkgmgr_parser_db.c
@@
-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,
fals
e));
+ __get_bool(app->splash_screen_display,
tru
e));
__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);