E / AuthUI: произошла ошибка входа. com.firebase.ui.auth.data.model.UserCancellationException: неизвестная ошибка - PullRequest
0 голосов
/ 18 марта 2019

Привет всем, я получаю эту неизвестную ошибку при входе в систему через Firebase Auth UI, я думаю, это потому, что некоторое несоответствие версий в моем .gradle ниже - это мой файл оценки сборки.Кто-нибудь может сказать мне, какая версия вызывает проблемы.

build.gradle

implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'

implementation 'ai.devsupport.instamojo:instamojolib:0.1.6'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:support-vector-drawable:27.1.1'



implementation 'com.google.firebase:firebase-auth:16.0.2'
implementation 'com.google.firebase:firebase-database:16.0.1'
implementation 'com.firebaseui:firebase-ui-auth:4.1.0'
implementation 'com.google.firebase:firebase-core:16.0.1'
implementation 'com.firebaseui:firebase-ui-database:4.1.0'


testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'


implementation 'com.facebook.shimmer:shimmer:0.4.0'
implementation 'com.yarolegovich:lovely-dialog:1.1.0'
implementation 'com.android.support:cardview-v7:28.0.0'

implementation 'com.google.firebase:firebase-messaging:17.4.0'
implementation 'com.android.volley:volley:1.1.1'
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...