Welcome to FirebaseUI and thanks for submitting an issue!
Please take a look at open issues, as well as resolved issues, to see if your issue is either already being addressed, or has been solved by someone else.
If not, please feel free to fill in the following info so we can help faster!
Cardview at version 25.1.1 while it should be 25.3.0
Warning
Slow Downs
compile 'com.android.support:appcompat-v7:25.3.0'
compile 'com.firebaseui:firebase-ui-auth:1.2.0'
@SUPERCILEX have a look at this
The more general version of this is #613 so we can keep discussing there
How to avail this fix? I'm still getting the warning.
This is how my dependencies look like.
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.0-beta4'
compile 'com.firebaseui:firebase-ui:1.2.0'
testCompile 'junit:junit:4.12'
}
This is the warning I get.
All com.android.support libraries must use the exact same version specification (mixing versions can lead to runtime crashes). Found versions 25.3.1, 25.1.1. Examples include com.android.support:animated-vector-drawable:25.3.1 and com.android.support:cardview-v7:25.1.1
@sreekanth-krishnan Add com.android.support:cardview-v7:25.3.1 to your dependency list.
I also needed to add
compile 'com.android.support:palette-v7:25.3.1'
compile 'com.android.support:customtabs:25.3.1'
compile 'com.android.support:design:25.3.1'
I added exclude word, and the error disappeared
compile ('com.firebaseui:firebase-ui-storage:2.0.1') { exclude group: 'com.android.support' }
compile ('com.firebaseui:firebase-ui-database:2.0.1') { exclude group: 'com.android.support' }
Most helpful comment
I also needed to add
compile 'com.android.support:palette-v7:25.3.1'compile 'com.android.support:customtabs:25.3.1'compile 'com.android.support:design:25.3.1'