当前位置: 首页 > 知识库问答 >
问题:

Gradle构建工具找不到play-services-tasks.aar?为什么?

程举
2023-03-14

今天突然,我得到了一个错误,当我试图运行我的应用程序在Android Studio。

它是:

Error: Could not find play-services-tasks.aar (com.google.android.gms:play-services-tasks:15.0.1).
Searched in the following locations:
    https://jcenter.bintray.com/com/google/android/gms/play-services-tasks/15.0.1/play-services-tasks-15.0.1.aar

我没有改变gradle文件中的任何内容,但它突然出现了。几分钟前,我的上一个构建成功执行。

为什么它找不到播放服务任务。aar是com的一部分。谷歌。Android游戏服务任务:15.0.1

采取的步骤:

我检查了gradle文件中是否包含了所有存储库,到目前为止,所有存储库都是正确的。

为什么这个错误会突然出现?

我也复制了这个链接https://jcenter.bintray.com/com/google/android/gms/play-services-tasks/15.0.1/play-services-tasks-15.0.1.aar到浏览器,但它的工作正常,也就是说,我得到了"文件下载"对话框。

我的Gradle档案

>

apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    buildToolsVersion "26.0.2"
    defaultConfig {
        applicationId "mekanic24assistantapplication.heba.mekanic24.com.mekanic24assistantapplication"
        minSdkVersion 14
        targetSdkVersion 26
        versionCode 13
        versionName "2.1"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }


    dexOptions {
        incremental true
        javaMaxHeapSize "4g"
    }

//    err Android Gradle Duplicate files copied in APK META-INF/license.txt

    configurations.all {

        resolutionStrategy {
            force 'com.android.support:support-v4:26+'
            force 'com.android.support:support-annotations:26+'


        }

    }


    packagingOptions {
        exclude 'META-INF/DEPENDENCIES.txt'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/NOTICE.txt'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/notice.txt'
        exclude 'META-INF/license.txt'
        exclude 'META-INF/dependencies.txt'
        exclude 'META-INF/LGPL2.1'
    }

}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    //   compile 'com.android.support:appcompat-v7:26.3.1'
    compile 'com.android.support:appcompat-v7:26+'
    compile 'com.android.support:design:26+'
    compile 'com.android.support:recyclerview-v7:26+'
    compile 'com.android.support:cardview-v7:26+'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    androidTestCompile 'com.android.support:support-annotations:26+'
    testCompile 'junit:junit:4.12'
    //   compile 'com.android.support:appcompat-v7:26.3.1'
    compile 'com.github.markushi:circlebutton:1.1'
    //  compile 'com.android.support:design:26.3.1'
    compile 'com.android.volley:volley:1.0.0'
    compile 'com.google.android.gms:play-services-base:15.0.1'
    compile 'com.android.support:multidex:1.0.1'
    compile 'com.firebase:firebase-client-android:2.5.2'
    compile 'com.google.firebase:firebase-core:15.0.2'
    compile 'com.google.firebase:firebase-messaging:15.0.2'
    compile 'com.google.firebase:firebase-database:15.0.0'
    compile 'com.wang.avi:library:2.1.3'
    compile 'de.hdodenhof:circleimageview:2.2.0'
    compile 'android.lib.recaptcha:reCAPTCHA:2.0.0'
    compile 'com.google.android.gms:play-services-safetynet:15.0.1'
    compile 'com.google.android.gms:play-services-maps:15.0.1'
    compile 'com.google.android.gms:play-services-places:15.0.1'
    compile 'com.google.android.gms:play-services-location:15.0.1'

    compile 'com.squareup.picasso:picasso:2.5.2'
    testCompile 'junit:junit:4.12'
    compile 'com.anjlab.android.iab.v3:library:1.0.38'
    compile files('libs/mail.jar')
    compile files('libs/additionnal.jar')
    compile files('libs/activation.jar')
    compile 'com.jakewharton:butterknife:8.8.1'
    annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
    compile 'com.yarolegovich:lovely-dialog:1.1.0'
    compile 'com.mobsandgeeks:android-saripaar:2.0.3'
    compile 'com.github.stfalcon:smsverifycatcher:0.3.1'
    compile 'ch.acra:acra:4.9.0'
    //TODO:  Apache 2.0 license https://github.com/ACRA/acra
    compile 'com.google.android.gms:play-services-ads:15.0.1'
    compile 'com.github.luongvo:GmailBackground:2.0.2'

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

项目级别

buildscript {
repositories {
    jcenter()
    maven { url 'https://maven.google.com' }
    maven {
        url "https://dl.bintray.com/android/android-tools"
    }

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

}
dependencies {
    classpath 'com.android.tools.build:gradle:2.3.2'

    classpath 'com.google.gms:google-services:3.2.0'
}
}

allprojects {
repositories {
    jcenter()
    maven { url 'https://maven.google.com' }
    maven {
        url "https://dl.bintray.com/android/android-tools"
    }

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

}
}

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

共有3个答案

云开诚
2023-03-14

就我而言:

allprojects {
    repositories {
        google()
        jcenter()
    }
}

解决了我的问题

  • 在我的旧配置中,只有“jcenter()”
慕容成文
2023-03-14

修复方法是将google url置于gradle中jcenter()上方的存储库列表中。

问题是:https://issuetracker.google.com/issues/80362794

曹新觉
2023-03-14

执行以下更改后,错误消失:

  1. 已删除maven{url'https://maven.google.com“}来自应用程序构建中的存储库。格拉德尔
  2. 添加maven{url'https://maven.google.com“}作为顶级生成中所有项目/存储库的第一个条目。格拉德尔
  3. 将所有播放服务和firebase依赖项更改为最新版本
  4. 将google服务插件的版本更改为classpath'com.google.gms:google服务:4.0.1'
 类似资料:
  • 昨天我尝试构建我的应用程序,一切正常。 今天,在项目没有任何变化的情况下……突然,我收到了一条警告信息,告诉我: 有人遇到同样的问题吗? 如果你点击它搜索软件包的链接,它基本上会立即通过浏览器下载。我想服务器端发生了一些变化?也许是命名约定? 它看起来像是在寻找:play-services-basement.aar并获取play-services-basement-11.0.1.aar?这可能是命

  • 我有Android项目,当运行命令时,我收到以下错误,我不知道如何使用Google Play Service 8.4.0。(8.3.0有效) 下面是应用程序gradle文件的外观。 我曾尝试将以下内容放在项目分级文件中,但没有起到帮助作用。 有人能帮我进一步调试吗?

  • 我正在编写一个java jar库。我只想为Gradle的项目添加游戏服务依赖项。我的gradle构建脚本: Gradle sync完成得很好,android studio告诉我一切都好,但当我试图构建: 我的gradle版本2.13。另外,我使用了最新的gradle版本候选版本。没什么。

  • 当我在android studio中尝试ro运行android应用程序时,我得到了这个错误: 任务“:app:CompileDebugKotlin”执行失败。无法解析配置“:app:DebugCompileClasspath”的所有项目。找不到play-services-ads-identifier-17.0.0.jar(com.google.android.gms:play-services-a

  • 我在运行时开始出现此错误。 错误:无法解析配置的所有文件“:app:debugCompileClasspath”。 找不到play-services-basement.aar(com.google.android.gms:play-services-地下室:15.0.1)。在以下位置搜索:https://jcenter.bintray.com/com/google/android/gms/play

  • 我一直在使用gradle作为Springboot,它过去很好,但gradle的构建突然停止了工作。我不断收到错误,说找不到依赖项 这是分级代码: 我得到的错误是: 无法解析组织。springframework。启动:spring启动依赖项:2.4。1.无法解析io。关键的。Spring云:spring云服务依赖项:2.4。1.无法解析组织。springframework。云:spring云依赖项: