无法解析以下类的超类型

时间:2017-12-06 14:08:20

标签: android firebase gradle kotlin firebase-authentication

我在androidapp kotlin给了我这个错误。

  

错误:无法解析以下类的超类型。请确保您在类路径中具有所需的依赖项:       com.google.firebase.auth.FirebaseAuth类,未解析的超类型:com.google.android.gms.internal.aad

和这个

  

错误:任务':app:compileDebugKotlin'执行失败。

编译错误。有关更多详细信息,请参阅日志

这是我的app模块

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 26
    defaultConfig {
        applicationId "appname"
        minSdkVersion 15
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"

     implementation 'com.android.support:appcompat-v7:26.1.0'
     implementation 'com.android.support:animated-vector-drawable:26.1.0'
    implementation 'com.android.support:mediarouter-v7:26.1.0'
   implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.android.support:recyclerview-v7:26.1.0'
    implementation 'com.android.support:cardview-v7:26.1.0'
    implementation 'com.android.support:design:26.1.0'

    implementation 'com.firebaseui:firebase-ui-database:3.0.0'



    //noinspection GradleCompatible,GradleCompatible
    implementation 'com.google.android.gms:play-services:11.0.4'
    implementation 'com.google.firebase:firebase-auth:11.0.4'
    implementation 'com.google.firebase:firebase-database:11.0.4'
    implementation 'com.google.firebase:firebase-storage:11.0.4'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
    compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"

}

 repositories {
    mavenCentral()
}
apply plugin: 'com.google.gms.google-services'

我的项目gradle就是这个

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    ext.kotlin_version = '1.1.51'
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
        classpath 'com.google.gms:google-services:3.1.0'

    }
}

allprojects {
    repositories {
        google()
        jcenter()
        maven { url "https://jitpack.io" }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

我有firebase.auth implemetation,但它仍然显示我的错误。

7 个答案:

答案 0 :(得分:2)

更新" com.google.android.gms中的所有依赖项:" group以及firebase-messaging版本到15.0.0。而不是12.0.1为我解决了这个问题。

答案 1 :(得分:2)

com.firebaseui:firebase-ui-auth更新为3.3.1为我修复了它。由于旧版本(在我的情况下为3.1.0)与com.google.firebase:firebase-messaging v15

不兼容

答案 2 :(得分:1)

我在您的gradle文件中看到至少2个问题:

  1. 您有一个重复的“kotlin-stdlib-jre7”条目(一个实现和一个编译)。删除最后一个:

    compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
    
  2. 未使用最新版本的firebase& google play services:更新到firebase 11.6.2

答案 3 :(得分:1)

在gradle中添加以下内容:-

实现'com.google.firebase:firebase-auth:19.1.0'
实施'com.google.android.gms:play-services-auth:17.0.0'

答案 4 :(得分:0)

可能发生的另一件事是,对于其中一个依赖项,您使用implementation而不是api,这可能与模块中的另一个依赖项发生冲突。

答案 5 :(得分:0)

如果您使用的是firebase-bom,则应更新到最新版本。对我来说,升级到最新版本后,它开始起作用。

截止到目前的最新版本:

com.google.firebase:firebase-bom:24.5.0

您可以检查最新版本HERE

答案 6 :(得分:-1)

添加这解决了我的问题

implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"