From 6479c87e9d5f8ea632952b5c3fd88fdb7ae57fa6 Mon Sep 17 00:00:00 2001 From: Yazarake <30499177+sahabatservice@users.noreply.github.com> Date: Sat, 7 Dec 2019 01:27:11 +0700 Subject: [PATCH] It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-configurations.html --- android/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index e43f8bd2..4634b3a7 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -25,7 +25,7 @@ android { def supportVersion = rootProject.hasProperty('supportLibVersion') ? rootProject.supportLibVersion : DEFAULT_SUPPORT_LIB_VERSION dependencies { - compile fileTree(include: ['*.jar'], dir: 'libs') - compile 'com.android.support:appcompat-v7:${supportVersion}' - compile 'com.facebook.react:react-native:+' + implementation fileTree(include: ['*.jar'], dir: 'libs') + implementation 'com.android.support:appcompat-v7:${supportVersion}' + implementation 'com.facebook.react:react-native:+' }