I'm unable to add react-native-fcm, react-native-firebase-analytics, react-native-firebase-crash-report to my app. iOS is fine but on Android I receive the following error:
* Where:
Build file '/Users/ferdinandvonhagen/GoStudentDev/mobile-app/android/app/build.gradle' line: 131
* What went wrong:
A problem occurred evaluating project ':app'.
> Project with path ':react-native-fcm' could not be found in project ':app'.
I followed the steps from the README.md. My React Native version is 0.30.0.
Anybody an idea how to solve this issue?
Line 131 is just: compile project(':react-native-fcm')
dependencies {
compile project(':react-native-fcm')
compile project(':react-native-firebase-analytics')
compile project(':react-native-vector-icons')
compile fileTree(dir: "libs", include: ["*.jar"])
compile "com.android.support:appcompat-v7:23.0.1"
compile "com.facebook.react:react-native:+" // From node_modules
compile project(':react-native-code-push')
compile project(':react-native-firebase-crash-report')
}
Issue with not installing the Google Repository correctly
@FerdinandvHagen i'm having the exact same problem
i.e.
A problem occurred evaluating project ':app'.
> Project with path ':react-native-fcm' could not be found in project ':app'.
though it looks like my Google Repository is installed correctly

what kind of issues did you have and how did you fix them?
thanks in advance
i am having the exact same issue not fixed yet.....
i followed the exact same way in the documentation, and installed google sdks,
For me, it was because I missed this step:
Edit android/app/settings.gradle
...
@cubabit Thanks !!! its fixed....
Thank you!!! Same problem with self installation of react-native-firebase...
Most helpful comment
For me, it was because I missed this step:
Edit android/app/settings.gradle
...
include ':app'