summaryrefslogtreecommitdiff
path: root/src/launchpad_common.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/launchpad_common.c')
-rw-r--r--src/launchpad_common.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/launchpad_common.c b/src/launchpad_common.c
index c3f942d..97b868f 100644
--- a/src/launchpad_common.c
+++ b/src/launchpad_common.c
@@ -607,6 +607,9 @@ void _set_env(appinfo_t *menu_info, bundle * kb)
if (str != NULL)
setenv("XDG_RUNTIME_DIR", str, 1);
+ str = bundle_get_val(kb, AUL_K_API_VERSION);
+ if (str != NULL)
+ setenv("TIZEN_API_VERSION", str, 1);
}
char** _create_argc_argv(bundle * kb, int *margc)