From 5f259e552bb6e363c0d79144464411ee444b1184 Mon Sep 17 00:00:00 2001
From: Diego Mello <diegolmello@gmail.com>
Date: Tue, 18 Jun 2019 09:40:01 -0300
Subject: [PATCH] [FIX] Android build stopped working after Play Services
 release (#991)

---
 android/app/build.gradle | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/android/app/build.gradle b/android/app/build.gradle
index 9e9465975..63fb83970 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -178,7 +178,9 @@ dependencies {
     implementation project(':react-native-splash-screen')
     implementation project(':react-native-screens')
     implementation project(':react-native-action-sheet')
-    implementation project(':react-native-device-info')
+    implementation(project(":react-native-device-info"),  {
+        exclude group: "com.google.android.gms"
+    })
     implementation project(':react-native-gesture-handler')
     implementation project(':react-native-image-crop-picker')
     implementation project(':react-native-i18n')
-- 
GitLab