From 872c55207cdde5f8742c8a9ea357e4ef662d148f Mon Sep 17 00:00:00 2001 From: vvb2060 Date: Mon, 12 Oct 2020 04:41:29 +0800 Subject: [PATCH] Add com.android.i18n to apex path --- native/jni/core/db.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/native/jni/core/db.cpp b/native/jni/core/db.cpp index d5a7c5ead..a843909f9 100644 --- a/native/jni/core/db.cpp +++ b/native/jni/core/db.cpp @@ -57,9 +57,9 @@ 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:"; +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:"; +constexpr char apex_path[] = "/apex/com.android.runtime/lib:/apex/com.android.art/lib:/apex/com.android.i18n/lib:"; #endif static int dl_init = 0;