From 1e6863f39d205729e053abfc60080b7bb1361781 Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Mon, 19 Jul 2021 07:42:12 -0700 Subject: [PATCH] Bump core-ktx to 1.5.0 and appcompat to 1.3.0 in `android/tutorial` Summary: This diff bumps core-ktx from 1.3.0 to 1.5.0 and appcompat from 1.1.0 to 1.3.0 inside `android/tutorial` core-ktx 1.5.0 is the last version built with Kotlin 1.4.x and is the latest we can safely upgrade to. To update to core-ktx 1.6.0 we would need to bump KGP on the overall project to 1.4.x or 1.5.x to fix the build failures. Reviewed By: passy Differential Revision: D29762647 fbshipit-source-id: 7ad23b3cbebe14b36dedaa7f8aedf11eece8429d --- android/tutorial/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/android/tutorial/build.gradle b/android/tutorial/build.gradle index 63d28af7b..848fc098f 100644 --- a/android/tutorial/build.gradle +++ b/android/tutorial/build.gradle @@ -39,9 +39,9 @@ android { } dependencies { - implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$KOTLIN_VERSION" - implementation "androidx.appcompat:appcompat:$ANDROIDX_VERSION" - implementation "androidx.core:core-ktx:$ANDROIDX_VERSION" + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.32" + implementation "androidx.appcompat:appcompat:1.3.0" + implementation "androidx.core:core-ktx:1.5.0" // Flipper // For simplicity, we use Flipper for both debug and release builds here.