Ilonpilaaja
Ilonpilaaja

Reputation: 1249

Android AppCompat-v7 and Firestore gradle conflict

So I have the following gradle entry: enter image description here

If I remove the firestore-part, it syncs just fine.

What am I missing?

[EDIT] This is what the error says: enter image description here

Upvotes: 1

Views: 143

Answers (1)

Faysal Ahmed
Faysal Ahmed

Reputation: 7669

This is an warning because Firebase still use old version of dependency. Simply add this dependencies the warning will be removed.

implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support:support-media-compat:28.0.0'
implementation 'com.android.support:animated-vector-drawable:28.0.0'

Upvotes: 1

Related Questions