Reputation: 633
I'm making a Chat Android app, and require the version number of Firebase UI & Android design support libraries for Android SDK 24.
I have got the below given version numbers from a link, but they are not compatible with sdk 24 but are only compatible with sdk 23.
compile 'com.android.support:design:23.4.0'
compile 'com.firebaseui:firebase-ui:0.6.0'
I have searched Firebase website, but couldn't locate the new version no of these libraries.
Where can I find the updated version number for these library files?
Upvotes: 2
Views: 8635
Reputation: 56
It works fine with version 0.4.0 of firebase-ui-database:
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
}
compile 'com.firebaseui:firebase-ui-database:0.4.0'
Upvotes: 0
Reputation: 12021
Android Support Library revisions
As of now 25.3.1 is the stable version for the support library and 2.0.1 for FirebaseUI.
Upvotes: 1
Reputation: 3835
The latest version is compile 'com.firebaseui:firebase-ui:1.0.1'
Check Out - https://github.com/firebase/FirebaseUI-Android#using-the-library-in-your-android-app
How it work -https://firebase.googleblog.com/2015/08/build-better-mobile-apps-with-firebaseui_78.html
Upvotes: 0