Deleted the part that launches the menu-screen only If the architecture is 64bit 18/236018/1
authorEunyoung Lee <ey928.lee@samsung.com>
Fri, 12 Jun 2020 04:40:14 +0000 (13:40 +0900)
committerEunyoung Lee <ey928.lee@samsung.com>
Fri, 12 Jun 2020 04:40:44 +0000 (13:40 +0900)
Change-Id: I336dbfc9fcd750131c8cea43ccecfec85a80b738

src/common/home_mgr.c

index f4b41ad..a16f845 100755 (executable)
@@ -127,21 +127,12 @@ void home_mgr_open_home(const char *appid, const char *key, const char *val)
 {
        char *home_appid = NULL;
 
-#ifndef TIZEN_ARCH_ARM64
        if (!appid) {
                home_appid = status_active_get()->setappl_selected_package_name;
        } else {
                home_appid = (char *) appid;
        }
        ret_if(!home_appid);
-#else
-       /*
-        * If the architecture is 64bit,
-        * starter will launch menu-screen only.
-        */
-       _D("[64bit] menu-screen will be launched.");
-       home_appid = MENU_SCREEN_PKG_NAME;
-#endif
 
        process_mgr_must_launch(home_appid, key, val, _change_home_cb, _after_launch_home);
 }