From c047375143d265a80beff5236a5a78501f6d5869 Mon Sep 17 00:00:00 2001 From: Laurent Cozic Date: Mon, 8 May 2023 18:44:52 +0100 Subject: [PATCH] Chore: Android: Trying to fix random crash --- packages/app-mobile/android/app/build.gradle | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/packages/app-mobile/android/app/build.gradle b/packages/app-mobile/android/app/build.gradle index 72aa9ef6db..a944851293 100644 --- a/packages/app-mobile/android/app/build.gradle +++ b/packages/app-mobile/android/app/build.gradle @@ -300,8 +300,11 @@ dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) //noinspection GradleDynamicVersion - implementation "com.facebook.react:react-native:+" // From node_modules - + // implementation "com.facebook.react:react-native:+" // From node_modules + implementation ("com.facebook.react:react-native") version { + strictly "0.70.6" // pass in your react-native version + } + implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0" debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") {