Reputation: 1249
So I have the following gradle entry:
If I remove the firestore-part, it syncs just fine.
What am I missing?
[EDIT] This is what the error says:
Upvotes: 1
Views: 143
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