Android
にapp
kotlin
があり、このエラーが発生しています。
エラー:次のクラスのスーパータイプは解決できません。クラスパスに必要な依存関係があることを確認してください:クラスcom.google.firebase.auth.FirebaseAuth、未解決のスーパータイプ:com.google.Android.gms.internal.aad
この
エラー:タスク ':app:compileDebugKotlin'の実行に失敗しました。
コンパイルエラー。詳細については、ログを参照してください
これは私のアプリモジュールです
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 implementation
しかし、それでも、それは私にエラーを示しています。
以下をgradleに追加します:-
実装 'com.google.firebase:firebase-auth:19.1.0'
実装 'com.google.Android.gms:play-services-auth:17.0.0'
発生する可能性のある他のことは、モジュール内の別の依存関係と競合する可能性のある依存関係の1つにimplementation
の代わりにapi
を使用していることです。
Firebase-bomを使用している場合は、最新バージョンに更新する必要があります。私にとっては、最新のものにアップグレードした後、それは機能し始めました。
現在の最新バージョン:
com.google.firebase:firebase-bom:24.5.0
最新バージョンを確認できます [〜#〜]こちら[〜#〜]