From 6f5ee3ee8c2ec504cacf8bed098b8b96db48f9b0 Mon Sep 17 00:00:00 2001 From: Brad Anderson Date: Fri, 13 Dec 2024 00:51:05 -0500 Subject: [PATCH] fix: bump OpenSSL dependency for Android (#559) --- android/build.gradle | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index a6f2708d..2caa753e 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -171,8 +171,9 @@ repositories { dependencies { //noinspection GradleDynamicVersion implementation "com.facebook.react:react-android:+" - // https://mvnrepository.com/artifact/com.android.ndk.thirdparty/openssl - implementation 'com.android.ndk.thirdparty:openssl:1.1.1q-beta-1' + + // Add a dependency on OpenSSL + implementation 'io.github.ronickg:openssl:3.3.2' } // Resolves "LOCAL_SRC_FILES points to a missing file, Check that libfb.so exists or that its path is correct".