web-dev-qa-db-ja.com

support-media-compat.aarが見つかりませんでした

= Firebase をAndroid gradle app。

FAILURE: Build failed with an exception.

* What went wrong:
Could not resolve all files for configuration ':app:debugCompileClasspath'.
> Could not find support-media-compat.aar (com.Android.support:support-media-compat:26.1.0).
  Searched in the following locations:
      https://jcenter.bintray.com/com/Android/support/support-media-compat/26.1.0/support-media-compat-26.1.0.aar
> Could not find support-core-utils.aar (com.Android.support:support-core-utils:26.1.0).
  Searched in the following locations:
      https://jcenter.bintray.com/com/Android/support/support-core-utils/26.1.0/support-core-utils-26.1.0.aar
> Could not find support-compat.aar (com.Android.support:support-compat:26.1.0).
  Searched in the following locations:
      https://jcenter.bintray.com/com/Android/support/support-compat/26.1.0/support-compat-26.1.0.aar
> Could not find support-compat.aar (com.Android.support:support-compat:26.1.0).
  Searched in the following locations:
      https://jcenter.bintray.com/com/Android/support/support-compat/26.1.0/support-compat-26.1.0.aar

Jcenterのみを検索しているようです。しかし、jcenterのすべてのリファレンスには、検索する他のリポジトリがリストされています。

buildscript {
    repositories {
        jcenter()
        google()
    }
    dependencies {
        classpath "com.Android.tools.build:gradle:3.2.0"

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

        classpath 'com.google.gms:google-services:4.2.0' // google-services plugin
    }
}

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

app/build.gradle

apply plugin: 'com.Android.application'

Android {
    compileSdkVersion 28
    buildToolsVersion "28.0.3"
    defaultConfig {
        applicationId "io.nme.samples.displayingabitmap"
        minSdkVersion 16
        targetSdkVersion 28
        versionCode 181
        versionName "1.0.0"
        testInstrumentationRunner "Android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    api fileTree(dir: 'libs', include: ['*.jar'])
    androidTestImplementation('com.Android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.Android.support', module: 'support-annotations'
    })
    api 'com.Android.support:appcompat-v7:24.2.1'
    api 'com.Android.support:support-v4:24.2.1'

    testImplementation 'junit:junit:4.12'

    dependencies {

        api project(':extension-api')
        api project(':haxe-firebase')
    }

    implementation 'com.google.firebase:firebase-core:16.0.4'
}

// ADD THIS AT THE BOTTOM
apply plugin: 'com.google.gms.google-services'

ここで何が欠けていますか?

4
Tom
api 'com.Android.support:appcompat-v7:24.2.1'
api 'com.Android.support:support-v4:24.2.1'

それがあなたの問題です。 Firebaseがなくても、これは問題を引き起こしているはずです。 API 28をターゲットにして構築していますが、サポートの依存関係はAPI 24にあります。28.0.0を使用するように変更してください。

また、extension-apiプロジェクトとhaxe-firebaseプロジェクトを確認し、最新のコンパイルバージョンとSDKバージョン、およびビルドツールバージョンとサポートライブラリバージョンを使用していることを確認してください。

4
TheWanderer

ライブラリの検索に関して同じ問題に遭遇しました。ただし、リポジトリの順序を調整することで、この問題は解決されました。

repositories {
    google()
    jcenter()
    // others
}

GoogleがホストするMavenサイトは、そもそも探しているもののようです。

ところで、maven {url ' https://maven.google.com '}は4.1より前のGradleバージョンに使用されますそしてgoogle()はその新しい形式です。 this doc も参照してください。

12
rayworks

26.1.0を置き換え、バージョン28.0.0のサポートライブラリを使用する必要があります

1

以下を使用

buildscript {
ext.kotlin_version = '1.2.20'

repositories {
    jcenter()
}

dependencies {
    classpath 'com.Android.tools.build:gradle:2.3.3'2.3.3
    classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
    classpath 'com.github.dcendents:Android-maven-gradle-plugin:2.0'
}
}

allprojects {
repositories
        {
            maven { url "https://dl.google.com/dl/Android/maven2/" }
            maven { url "http://jcenter.bintray.com/" }
            maven { url 'https://plugins.gradle.org/m2/'}
            maven { url "https://maven.google.com" }
            maven { url 'https://jitpack.io' }
            mavenCentral()
            flatDir {
                dirs 'libs'
            }
        }
}
0
Ali Bagheri