This is likely due to mismatch of dependency versions. I checked the dependency tree that he had:
android.arch.lifecycle:extensions:1.0.0
and
android.arch.lifecycle:livedata-core:1.1.0
see mismatch 1.0.0 and 1.1.0
In your case, try updating:
implementation 'com.firebaseui:firebase-ui-firestore:3.2.1'
in
implementation 'com.firebaseui:firebase-ui-firestore:3.2.2'
which hopefully fix the version issue.
and note that compile not recommended to use implementation for all your dependencies.
Update:
You can always check the dependency tree with the gradlew your_app_name:dependencies command on Windows
source share