1. ホーム
  2. android

解決に失敗しました:com.google.firebase:firebase-core:11.2.0

2023-10-22 07:12:12

質問

プロジェクトを同期させると、複数の "Failed to Resolve" 問題が発生します。それらはすべて firebase と play-services に関連しています。これらはすべて同じ (11.2.0) であることを確認しました。また、確認したところ、どちらも最新バージョンは11.2.0でした。また、同様の質問に対する他の回答はすべてSDK ManagerでGoogle play servicesとリポジトリを更新していますが、私のはすでに最新版です。

なぜプロジェクトを同期できないのか、何か心当たりはありますか?

EDIT - 現在の解決策

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

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.3.3'
        classpath 'com.google.gms:google-services:3.0.0'
        classpath 'com.google.firebase:firebase-plugins:1.0.4'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

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

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

どのように解決するのですか?

追加 maven { url "https://maven.google.com" } をルートレベルに追加します。 build.gradle ファイル

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