summaryrefslogtreecommitdiff
path: root/NativeLauncher/installer-plugin/prefer_dotnet_aot_plugin.cc
diff options
context:
space:
mode:
Diffstat (limited to 'NativeLauncher/installer-plugin/prefer_dotnet_aot_plugin.cc')
-rwxr-xr-xNativeLauncher/installer-plugin/prefer_dotnet_aot_plugin.cc46
1 files changed, 25 insertions, 21 deletions
diff --git a/NativeLauncher/installer-plugin/prefer_dotnet_aot_plugin.cc b/NativeLauncher/installer-plugin/prefer_dotnet_aot_plugin.cc
index f180739..a9c940b 100755
--- a/NativeLauncher/installer-plugin/prefer_dotnet_aot_plugin.cc
+++ b/NativeLauncher/installer-plugin/prefer_dotnet_aot_plugin.cc
@@ -37,30 +37,34 @@ const std::string VALUE_TRUE = "true";
const std::string mdKey = "http://tizen.org/metadata/prefer_dotnet_aot";
extern "C" int PKGMGR_MDPARSER_PLUGIN_INSTALL (const char *pkgid, const char *appid, GList *list)
{
-
- GList *tag = NULL;
- bool mdValue = false;
- Metadata *mdInfo = NULL;
- tag = g_list_first(list);
- while (tag) {
- mdInfo = (Metadata*)tag->data;
- if(mdInfo->key == mdKey && mdInfo->value == VALUE_TRUE) {
- _DBG("Prefer dotnet application AOT set TRUE");
- mdValue = true;
- }
- tag = g_list_next(tag);
+ GList *tag = NULL;
+ bool mdValue = false;
+ Metadata *mdInfo = NULL;
+ tag = g_list_first(list);
+ while (tag)
+ {
+ mdInfo = (Metadata*)tag->data;
+ if(mdInfo->key == mdKey && mdInfo->value == VALUE_TRUE)
+ {
+ _DBG("Prefer dotnet application AOT set TRUE");
+ mdValue = true;
}
+ tag = g_list_next(tag);
+ }
- if (mdValue) {
- if (create_ni_under_pkg_root(pkgid) != 0)
- {
- _ERR("Failed to get root path from [%s]", pkgid);
- return -1;
- } else {
- _DBG("Complete make application to native image");
- }
+ if (mdValue)
+ {
+ if (create_ni_under_pkg_root(pkgid) != 0)
+ {
+ _ERR("Failed to get root path from [%s]", pkgid);
+ return -1;
+ }
+ else
+ {
+ _DBG("Complete make application to native image");
}
- return 0;
+ }
+ return 0;
}
extern "C" int PKGMGR_MDPARSER_PLUGIN_UPGRADE (const char *pkgid, const char *appid, GList *list)