From cac743acd1c47e1096c8cb8044aa68e2898ab4f9 Mon Sep 17 00:00:00 2001 From: Trey Ethridge Date: Wed, 15 May 2019 14:53:30 -0400 Subject: [PATCH] Switch 'compile' to 'implementation' This is a fix for the warning message shown when syncing Gradle. The warning is: WARNING: Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'. It will be removed at the end of 2018. See: https://github.com/maxs15/react-native-spinkit/issues/119 --- android/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 6f92305..63013f1 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -43,6 +43,6 @@ android { dependencies { - compile 'com.facebook.react:react-native:+' - compile 'com.github.ybq:Android-SpinKit:1.2.0' + implementation 'com.facebook.react:react-native:+' + implementation 'com.github.ybq:Android-SpinKit:1.2.0' }