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
This commit is contained in:
Nicola Corti
2021-07-19 07:42:12 -07:00
committed by Facebook GitHub Bot
parent 4953444ceb
commit 1e6863f39d

View File

@@ -39,9 +39,9 @@ android {
} }
dependencies { dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$KOTLIN_VERSION" implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.32"
implementation "androidx.appcompat:appcompat:$ANDROIDX_VERSION" implementation "androidx.appcompat:appcompat:1.3.0"
implementation "androidx.core:core-ktx:$ANDROIDX_VERSION" implementation "androidx.core:core-ktx:1.5.0"
// Flipper // Flipper
// For simplicity, we use Flipper for both debug and release builds here. // For simplicity, we use Flipper for both debug and release builds here.