From 7a772a985c147d4387bb2f1069a137e33cff77ed Mon Sep 17 00:00:00 2001
From: Ashish Kumar Badtiya <itsashis4u@gmail.com>
Date: Fri, 17 Jul 2020 19:15:12 +0530
Subject: [PATCH] Update build.gradle

`provided` is deprecated in favour of `compileOnly`
For reference: https://developer.android.com/studio/build/dependencies?utm_source=android-studio#dependency_configurations
---
 lib/android/build.gradle | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/android/build.gradle b/lib/android/build.gradle
index 8067eac..7569355 100644
--- a/lib/android/build.gradle
+++ b/lib/android/build.gradle
@@ -34,7 +34,7 @@ repositories {
 }
 
 dependencies {
-    provided 'com.facebook.react:react-native:+'
-    provided 'com.webengage:android-sdk:3.+'
+    implementation 'com.facebook.react:react-native:+'
+    compileOnly 'com.webengage:android-sdk:3.+'
 }
-  
\ No newline at end of file
+