e: Супертипы следующих классов не могут быть разрешены. Пожалуйста, убедитесь, что у вас есть необходимые зависимости в classpath: - PullRequest
0 голосов
/ 05 октября 2019

супертипы следующих классов не могут быть разрешены. убедитесь, что у вас есть требуемая зависимость в classpath: class com.google.firebase.auth.internal.internalAuthProvider, неразрешенные супертипы com.google.firebase.internal.internalTokenProvider

Вот код:

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {

    compileSdkVersion 29
    buildToolsVersion "29.0.2"
    defaultConfig {
        applicationId "com.example.firebaseuiexample"
        minSdkVersion 29
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {

        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {


    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.core:core-ktx:1.1.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.2.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
    implementation 'com.google.firebase:firebase-core:17.2.0'
    implementation 'com.firebaseui:firebase-ui-auth:4.3.2'

}
apply plugin: 'com.google.gms.google-services'

1 Ответ

0 голосов
/ 06 октября 2019

реализация 'com.google.firebase: база данных firebase: 16.0.4' реализация 'com.google.firebase: firebase-auth: 16.0.5'

изменить на эти реализации.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...