From 60e8518c673be9f4479a6de595a914d7e7ecbb2f Mon Sep 17 00:00:00 2001 From: Woraphot Chokratanasombat Date: Tue, 4 Jun 2024 02:55:18 +0700 Subject: [PATCH] [Example@Android] Change: Update dependencies --- example/android/app/build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle index c27709a2..f06834b8 100644 --- a/example/android/app/build.gradle +++ b/example/android/app/build.gradle @@ -108,8 +108,12 @@ android { } dependencies { + def appcompat_version = "1.7.0" + androidTestImplementation('com.wix:detox:+') - implementation 'androidx.appcompat:appcompat:1.1.0' + implementation "androidx.appcompat:appcompat:$appcompat_version" + // For loading and tinting drawables on older versions of the platform + implementation "androidx.appcompat:appcompat-resources:$appcompat_version" // The version of react-native is set by the React Native Gradle Plugin implementation("com.facebook.react:react-android")