From 34ed55b1ed06ed70235fb0f22a0f17a987073b00 Mon Sep 17 00:00:00 2001 From: Libin Lu Date: Wed, 21 Mar 2018 12:22:39 -0400 Subject: [PATCH] add comment --- Examples/simple-fcm-client/android/app/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Examples/simple-fcm-client/android/app/build.gradle b/Examples/simple-fcm-client/android/app/build.gradle index be26c3b..7425d33 100644 --- a/Examples/simple-fcm-client/android/app/build.gradle +++ b/Examples/simple-fcm-client/android/app/build.gradle @@ -129,6 +129,10 @@ android { dependencies { compile(project(':react-native-maps')) { exclude group: 'com.google.android.gms', module: 'play-services-base' + // This resolution make compiler ignoring play-service-base's version requirement in react-native-maps + // so that it only read from react-native-fcm + // you can also lock the version in this gradle file and ignore all module declaration + // or you can use ResolutionStragety } compile project(':react-native-fcm') compile fileTree(dir: "libs", include: ["*.jar"]) -- 2.26.2