From 6b885051b37923d8e084f9ea142dbd6442879a37 Mon Sep 17 00:00:00 2001 From: Riccardo Date: Mon, 18 Oct 2021 16:39:27 +0200 Subject: [PATCH] androidx version as variable. v1.3.2 as default instead of generic 1.+ --- android/build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index 97e0d44..a8010d9 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -34,6 +34,8 @@ repositories { } dependencies { + def androidXCore = safeExtGet('androidXCore', "1.3.2") + implementation 'com.facebook.react:react-native:+' - implementation 'androidx.core:core:1.+' + implementation "androidx.core:core:$androidXCore" }