我正在使用这段代码,但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'
}
1条答案
按热度按时间mmvthczy1#
要解决此问题,请在
build.gradle
文件中添加以下行:将Firebase身份验证与Firebase-UI库一起使用时,必须将两个依赖项都添加到build.gradle文件中。