From b76c80e2cecea20bb6c2b8fa170887005dbed33d Mon Sep 17 00:00:00 2001 From: vvb2060 Date: Sun, 14 Feb 2021 14:16:38 +0800 Subject: [PATCH] Fix apex path --- native/jni/core/db.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native/jni/core/db.cpp b/native/jni/core/db.cpp index a1bf120c4..bda1e7b03 100644 --- a/native/jni/core/db.cpp +++ b/native/jni/core/db.cpp @@ -53,7 +53,7 @@ static void (*android_update_LD_LIBRARY_PATH)(const char *ld_library_path); } #ifdef __LP64__ -constexpr char apex_path[] = "/apex/com.android.runtime/lib64:/apex/com.android.art/lib64:/apex/com.android.i18n/lib64"; +constexpr char apex_path[] = "/apex/com.android.runtime/lib64:/apex/com.android.art/lib64:/apex/com.android.i18n/lib64:"; #else constexpr char apex_path[] = "/apex/com.android.runtime/lib:/apex/com.android.art/lib:/apex/com.android.i18n/lib:"; #endif