user10368830
user10368830

Reputation:

Gradle Failed to resolve: com.google.firebase:firebase-core:17.3.4

I am trying to generate token in order to send the push notification for that i have added the following dependency in the gradle file.

implementation 'com.google.firebase:firebase-messaging:17.3.4'

but it is showing the following error message :

Failed to resolve: com.google.firebase:firebase-core:17.3.4

How to resolve that error?

Upvotes: 0

Views: 2159

Answers (1)

Maxime Dupierreux
Maxime Dupierreux

Reputation: 58

Try adding this implementation 'com.google.firebase:firebase-core:16.0.1' to your build.gradle.

And in your top level gradle file : classpath 'com.google.gms:google-services:4.0.2'

Upvotes: 1

Related Questions