Adding Firebase UI to android studio
NickName:Nzadibe Ask DateTime:2016-11-20T06:05:12

Adding Firebase UI to android studio

I need to get a hands-on on firebase list and recycler adapters. I've added the required firebase ui dependency but for reasons unknown to me, I keep getting this error:

 Failed to resolve: com.firebase:firebase-ui:0.3.1 

I've throttled the dependency version back and forth(0.1.0,0.3.1, 0.4.0) and neither of them works for me. I could use some help here.

Copyright Notice:Content Author:「Nzadibe」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/40698422/adding-firebase-ui-to-android-studio

Answers
ugur 2016-11-19T22:15:01

What is the google play services version of yours.\nif 9.8.0, use below for compatibility reasons\n\ncompile 'com.firebaseui:firebase-ui:1.0.0'\n\n\nhttps://github.com/firebase/firebaseui-android#using-the-library-in-your-android-app",


WizzKidd 2016-11-19T22:10:06

In the app's build.gradle I add to the firebase core library to the dependencies :\n\ncompile 'com.google.firebase:firebase-core:9.8.0'\n\n\nThen depending which modules of firebase I want to use in addition, I add those in too, such as:\n\ncompile 'com.google.firebase:firebase-ads:9.8.0'\n",


More about “Adding Firebase UI to android studio” related questions

Getting error in adding dependencies for firebase-ui-auth

Since it is required to use FirebaseUI Version as per the Firebase/Play Services Version, I am adding: compile 'com.google.firebase:firebase-core:10.2.1' compile 'com.google.firebase:firebase-auth...

Show Detail

Firebase list adapter in android studio

I have some problem in the android studio , i want to create the list view conect with the Firebase . But i get this error : cannot resolve symbol firebaselistadapter this is my dependence:

Show Detail

Adding Firebase UI to android studio

I need to get a hands-on on firebase list and recycler adapters. I've added the required firebase ui dependency but for reasons unknown to me, I keep getting this error: Failed to resolve: com.fi...

Show Detail

failed to find 'com.firebase:firebase-ui:0.2.0' in android studio

I want to use firebase UI in my android app, but it constantly give build error while adding dependency in `android studio i tried the tutorial at https://github.com/firebase/FirebaseUI-Android#usi...

Show Detail

Error in adding dependency for firebase-ui-auth:2.3.0

I'm facing this issue since yesterday... I am adding: //Add Library compile 'com.android.support:design:26.1.0' compile 'com.firebaseui:firebase-ui:0.2.0' compile 'com.google.android.gms:play-serv...

Show Detail

Error in adding dependency for firebase-ui-auth:2.3.0

I'm facing this issue since yesterday... I am adding: //Add Library compile 'com.android.support:design:26.1.0' compile 'com.firebaseui:firebase-ui:0.2.0' compile 'com.google.android.gms:play-serv...

Show Detail

Android Studio Firebase Realtime adding nodes

Currently working with Android Studio(Java) and Firebase Realtime. I am having an issue, I want to add another node called "Goals" into my Meetings, unfortunately, it keeps adding it into...

Show Detail

App crashed after adding flutter firebase auth ui

Flutter firebase auth UI have some issue, because of firebase_auth version miss match issue My flutter app crashed and unable to identify an issue, after opening in an android studio, I got the i...

Show Detail

Android Studio issue with firebase ui storage in Gradle

For some reason when I add compile 'com.firebaseui:firebase-ui-storage:0.6.0' to the dependencies it creates a conflict in the gradle with implementation 'com.android.support:appcompat-v7:27.0.2' ...

Show Detail

Error: In adding Firebase Storage dependency to Android Studio Project?

I have created a Firestore Project in Android Studio. In which I have Firebase Authorization implemented and that is working absolutely fine. I am able to push documents to Firestore Database. But...

Show Detail