Rajat
Rajat

Reputation: 1

Gradle project sync failed. Basic functionality (e.g. editing, deugging ) will not work properly

Gradle sync failed when the firebase cloud messaging dependency was applied.

I've tried all the versions of FCM in app like 17.0.0, 17.3.2, 15.0.0, 16.0.1, etc.

enter image description here

enter image description here

enter image description here

Upvotes: 0

Views: 130

Answers (2)

Tamir Abutbul
Tamir Abutbul

Reputation: 7661

Try to replace your implementation with this :

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

Upvotes: 0

Kartik Shandilya
Kartik Shandilya

Reputation: 3924

You can always check the docs for a detailed explanation.

Replace your current FCM dependency with the following version -

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

Upvotes: 1

Related Questions