Simran
Simran

Reputation: 633

Android Firebase - version number of Firebase UI & Android design support libraries for Android SDK 24

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

Answers (3)

Gihan Wijesekara
Gihan Wijesekara

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

Darush
Darush

Reputation: 12021

Android Support Library revisions

FirebaseUI versions

As of now 25.3.1 is the stable version for the support library and 2.0.1 for FirebaseUI.

Upvotes: 1

Related Questions