From 9b0d9b283116947cf125e12b6d1d17203604f0d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Sun, 3 May 2020 19:20:23 +0200 Subject: [PATCH] gradle: replace deprecated compile with implementation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- android/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 5e229e1..5de95dd 100755 --- a/android/build.gradle +++ b/android/build.gradle @@ -34,6 +34,6 @@ repositories { } dependencies { - compile 'com.facebook.react:react-native:+' - compile 'com.facebook.conceal:conceal:1.1.3@aar' + implementation 'com.facebook.react:react-native:+' + implementation 'com.facebook.conceal:conceal:1.1.3@aar' }