diff --git a/Examples/simple-fcm-client/android/app/build.gradle b/Examples/simple-fcm-client/android/app/build.gradle index be26c3be862ce94143fbb0fef978226e44fa7ace..7425d332e782a8dc0be42577bc14b96249970a2b 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"])