From 6b9f86a23cc98207ab535f7f9d04a0c12753b61d Mon Sep 17 00:00:00 2001 From: Woongsuk Date: Fri, 25 Apr 2025 06:47:47 +0900 Subject: [PATCH] Add appPath to appNIPath In case of RPK, The native image and Dll exist in the same location, and it is mounted to application's "bin" directory. (not in .native_image directory). And Dlls in RPK is loaded by Assembly.Load() method in Tizen 7.0. To load native image of RPK, add appPath to appNIPath, --- NativeLauncher/util/path_manager.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NativeLauncher/util/path_manager.cc b/NativeLauncher/util/path_manager.cc index 2eac3b7..2a062cd 100644 --- a/NativeLauncher/util/path_manager.cc +++ b/NativeLauncher/util/path_manager.cc @@ -64,7 +64,7 @@ void PathManager::updateAppRelatedPath(const std::string& appRootPath, const std appTacPath = concatPath(appBinPath, TAC_SYMLINK_SUB_DIR); appPaths = appRootPath + ":" + appBinPath + ":" + appLibPath + ":" + appTacPath; - appNIPaths = appNIBinPath + ":" + appNILibPath + ":" + appTacPath; + appNIPaths = appNIBinPath + ":" + appNILibPath + ":" + appPaths; if (!extraDllPaths.empty()) { appPaths = appPaths + ":" + extraDllPaths; -- 2.34.1