我正在使用此代码执行此操作,但库中没有com.firebase.ui.authui。我在哪里可以得到它或如何在代码中使用它。请帮忙。
startActivityForResult(
AuthUI.getInstance()
.createSignInIntentBuilder()
.setIsSmartLockEnabled(false)
.setProviders(
AuthUI.EMAIL_PROVIDER,
AuthUI.GOOGLE_PROVIDER)
.build(),
RC_SIGN_IN);
这是我的build.gradle文件:
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
//noinspection GradleCompatible
compile 'com.android.support:design:24.2.1'
compile 'com.android.support:appcompat-v7:26.0.0'
// Displaying images
compile 'com.github.bumptech.glide:glide:3.6.1'
compile 'com.google.firebase:firebase-database:11.8.0'
compile 'com.google.firebase:firebase-auth:11.8.0'
compile 'com.firebaseui:firebase-ui-database:3.2.1'
}
答案 0 :(得分:1)
要解决此问题,请在build.gradle
文件中添加以下行:
compile 'com.firebaseui:firebase-ui-auth:3.2.1'
将Firebase身份验证与Firebase-UI库一起使用时,必须将这两个依赖项添加到build.gradle文件中。