From 544149437675aeb13ee7240c8b8704dba611ce38 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Wed, 24 May 2023 04:19:58 -0700 Subject: [PATCH] Centralise and bump deps (#4759) Summary: [android][tutorial] Centralise and bump deps Per title. Pull Request resolved: https://github.com/facebook/flipper/pull/4759 Test Plan: As before. --- Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/flipper/pull/4759). * __->__ https://github.com/facebook/flipper/issues/4759 * https://github.com/facebook/flipper/issues/4758 * https://github.com/facebook/flipper/issues/4757 * https://github.com/facebook/flipper/issues/4756 * https://github.com/facebook/flipper/issues/4755 * https://github.com/facebook/flipper/issues/4754 * https://github.com/facebook/flipper/issues/4753 * https://github.com/facebook/flipper/issues/4752 * https://github.com/facebook/flipper/issues/4751 Reviewed By: ivanmisuno Differential Revision: D46069041 Pulled By: passy fbshipit-source-id: c970c57e72445faca92a0618ed612ec86eb9f970 --- android/tutorial/build.gradle | 6 +++--- build.gradle | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/android/tutorial/build.gradle b/android/tutorial/build.gradle index 2526f95ec..8bf1a54e7 100644 --- a/android/tutorial/build.gradle +++ b/android/tutorial/build.gradle @@ -44,9 +44,9 @@ android { } dependencies { - implementation "org.jetbrains.kotlin:kotlin-stdlib:$KOTLIN_VERSION" - implementation "androidx.appcompat:appcompat:1.4.1" - implementation "androidx.core:core-ktx:1.8.0" + implementation deps.kotlinStdLibrary + implementation deps.supportAppCompat + implementation deps.supportCoreKtx // Flipper // For simplicity, we use Flipper for both debug and release builds here. diff --git a/build.gradle b/build.gradle index 14c0f7484..f308c56a6 100644 --- a/build.gradle +++ b/build.gradle @@ -67,6 +67,7 @@ ext.deps = [ supportEspresso : 'androidx.test.espresso:espresso-core:3.5.1', supportEspressoIntents : 'androidx.test.espresso:espresso-intents:3.5.1', supportTestRunner : 'androidx.test:runner:1.5.2', + supportCoreKtx : 'androidx.core:core-ktx:1.10.1', // Arch archPaging : 'android.arch.paging:runtime:1.0.1', // First-party