每当我尝试导入时,都找不到com.firebase.ui.authui类

t9aqgxwy  于 2023-02-25  发布在  其他
关注(0)|答案(1)|浏览(144)

我正在使用这段代码,但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'
}
mmvthczy

mmvthczy1#

要解决此问题,请在build.gradle文件中添加以下行:

implementation 'com.firebaseui:firebase-ui-auth:7.2.0'

将Firebase身份验证与Firebase-UI库一起使用时,必须将两个依赖项都添加到build.gradle文件中。

相关问题