Skip to content Skip to sidebar Skip to footer

Cannot Resolve Error In Firebase Chat Application

Im trying chat application using firebase. Im getting following error which could nit resolve myself, Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'.

Solution 1:

FirebaseUI has transitive dependencies on a number of the Firebase libraries. You must specify a version of FirebaseUI that is compatible with the Firebase libraries you are using. The table of compatible versions is listed in the FirebaseUI documentation. The most recent FirebaseUI version is 1.2.0, which works with library version 10.2.0. A version of FirebaseUI for Firebase libs 10.2.4 and 10.2.6 has not been released.

The safe change is:

compile'com.firebaseui:firebase-ui:1.2.0'compile'com.google.firebase:firebase-auth:10.2.0'

You could try 1.2.0 with 10.2.4 or 10.2.6, but may encounter the same problem you are seeing now.

Post a Comment for "Cannot Resolve Error In Firebase Chat Application"