From ac51cf65117d43b60c0ddefd254f8dd1648b6a23 Mon Sep 17 00:00:00 2001 From: Hyo Chan Jang Date: Wed, 16 Jan 2019 01:08:00 +0900 Subject: [PATCH] Replace deprecated 'compile' gradle configuration with 'implementation' (#1477) --- android/app/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index f0117d3..4fae97e 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -26,6 +26,6 @@ android { } dependencies { - compile "com.facebook.react:react-native:+" - compile 'com.nimbusds:nimbus-jose-jwt:5.1' -} \ No newline at end of file + implementation "com.facebook.react:react-native:+" + implementation 'com.nimbusds:nimbus-jose-jwt:5.1' +}