From fc23edd67a5ec7f32c7c5f6cd81893b94dc043a2 Mon Sep 17 00:00:00 2001 From: Chris Bobbe Date: Fri, 18 Oct 2024 12:53:10 -0700 Subject: [PATCH] android build: Set strict version 0.10.4 for RN's dependency SoLoader Fixes: #5901 --- android/app/build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/android/app/build.gradle b/android/app/build.gradle index d6d2c16d762..81574a9ed6a 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -235,6 +235,14 @@ dependencies { // For animated GIF support: implementation "com.facebook.fresco:animated-gif:${rnProperties.get('FRESCO_VERSION')}" + implementation('com.facebook.soloader:soloader') { + version { + // The fix for #5901, resolving Google Play's warning + // that we were using an old buggy version (0.10.3). + strictly '0.10.4' + } + } + // ---------------------------------------- // Dependencies from RN upstream, in the template app