After update from 3.1.0 to 3.2.2 I facing with build error - This app relies on Crashlytics. Please sign up for access at https://fabric.io/sign_up,
install an Android build tool and ask a team member to invite you to this app's organization.
I don't want use this analytics service because I prefer sentry.
Please remove it or set optionally
Thank you
@6pm can we see your build gradle? If you added the transitive = false as per docs you shouldn't be having Crashlytics included as part of your build.

Closing due to lack of response. Please re-open with the information requested if it's still an issue.
Adding transitive code fixed for me!
This could be more clear in the docs. We use react-native link so we expect this part to be correct already. The docs even says This should be here already instead of Add the transitive line below so our eyes end up skipping this part :)

Thanks @brunolemos
Seriously our eyes skip this one in docs. Changed and working well.
The file "build.gradle" will have
compile project(':react-native-firebase')
Which needs to be changed to
compile(project(':react-native-firebase')) {
transitive = false
}
If you run react-native link react-native-firebase then this should be taken care of for you automatically?
@chrisbianca IIRC I did use link and it did not add the transitive part
Most helpful comment
Adding
transitivecode fixed for me!This could be more clear in the docs. We use
react-native linkso we expect this part to be correct already. The docs even saysThis should be here alreadyinstead ofAdd the transitive line belowso our eyes end up skipping this part :)