Search code examples
androidfirebasefirebaseui

Gradle build errors with firebase ui auth


I am taking a Udacity tutorial on Firebase and when I add the firebase ui auth dependency com.firebaseui:firebase-ui-auth:3.2.2 the build fails with errors. Please refer to the images and assist. Thanks.

The dependencies:

dependencies {
compile fileTree(include: ['*.jar'],dir: 'libs')
testcompile 'junit:junit:4.12'
compile 'com.android.support:design:24.2.0'
compile 'com.android.support:appcompat-v7:24.2.0'
//Displaying images 
compile 'com.github.bumptech.glide:glide:3.6.1'
compile 'com.google.firebase:firebase-core:11.8.0'
compile 'com.google.firebase:firebase-database:11.8.0'
compile 'com.google.firebase:firebase-auth:11.8.0'
compile 'com.firebaseui:firebase-ui-auth:3.2.2'
}
apply plugin 'com.google.gms.google-services'

The error enter image description here


Solution

  • Change the following:

    compile 'com.android.support:design:24.2.0'
    compile 'com.android.support:appcompat-v7:24.2.0'
    

    to this:

    compile 'com.android.support:design:27.0.2'
    compile 'com.android.support:appcompat-v7:27.0.2'