From f33b433a81a8e1c4e52238fb71fcba784847a05a Mon Sep 17 00:00:00 2001 From: huymobile Date: Thu, 27 Aug 2026 04:46:31 +0700 Subject: [PATCH] fix(android): exclude duplicate Hermes test JNI libs Keep runtime-owned hermestooling and hermesvm binaries out of the library AAR so Android test builds do not merge duplicate copies. Fixes #267 --- android/build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/android/build.gradle b/android/build.gradle index b6af1c3..7a5c25a 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -147,6 +147,8 @@ android { "**/libhermes.so", "**/libhermes-executor-debug.so", "**/libhermes_executor.so", + "**/libhermestooling.so", + "**/libhermesvm.so", "**/libreactnative.so", "**/libreactnativejni.so", "**/libturbomodulejsijni.so",