android - Gradle 找不到不存在的依赖项 - Android 工作室

标签 android gradle android-gradle-plugin build.gradle

我正试图在我的工作中从 bitbucket 导入一个 android 项目,因为前 android 开发人员退出了,我将继续他的工作。

Gradle 同步永远不会返回正常。它得到了错误:

Error:Could not find com.google.android.gms:play-services-measurement:9.0.0. Required by: frontend:app:unspecified



有趣的是,我在整个 git 文件夹中抓取了字符串“measurement”的每一次出现,但在模块 app build.gradle 中只找到了一个,它被评论了,甚至版本 gradle 都没有提示:
dependencies {
...
//    compile 'com.google.android.gms:play-services-measurement:8.3.0'
...
}

有人可以帮忙吗?我真的很感激它,因为我已经在这里挣扎了几个小时。
提前谢谢!

项目(名为“前端”)build.gradle:
buildscript {
    repositories {
        jcenter()
        mavenCentral()
        maven {
            url "https://oss.sonatype.org/content/repositories/snapshots"
        }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.3.0'
        classpath 'me.tatarka:gradle-retrolambda:3+'
        classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
        classpath 'com.google.gms:google-services:2.0.0-alpha3'

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

allprojects {
    repositories {
        jcenter()
        mavenCentral()
        maven {
            url "https://oss.sonatype.org/content/repositories/snapshots"
        }
    }
}

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

模块(名为“app”)build.gradle:
apply plugin: 'com.android.application' apply plugin: 'me.tatarka.retrolambda'

android {

    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.smartbus"
        minSdkVersion 17
        targetSdkVersion 23
        versionCode 29
        versionName "2.1.5"
        multiDexEnabled true
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    useLibrary 'org.apache.http.legacy'


    dexOptions {
        preDexLibraries = false
    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    lintOptions {
        abortOnError false
    }

}


retrolambda {
    jdk "C:\\ProgramData\\Oracle\\Java\\javapath\\java.exe"
    jvmArgs '-noverify' }





dependencies {
    apply plugin: 'android-apt'
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    provided "org.projectlombok:lombok:1.16.8"
    apt "org.projectlombok:lombok:1.16.8"
    compile 'com.android.support:multidex:1.0.1'
    compile 'com.android.support:appcompat-v7:24.0.0-alpha2'
    compile 'com.android.support:design:24.0.0-alpha2'
    compile 'com.android.support:cardview-v7:24.0.0-alpha2'
    compile 'com.google.guava:guava:18.0'
    compile 'org.reflections:reflections:0.9.10'
    compile 'com.annimon:stream:1.0.5'
    compile 'com.squareup.okhttp3:logging-interceptor:3.0.0-RC1'
    compile 'com.squareup.retrofit2:retrofit:2.0.0-beta3'
    compile 'com.squareup.retrofit2:converter-gson:2.0.0-beta3'
    compile 'com.github.rey5137:material:1.2.2'
    compile 'com.getbase:floatingactionbutton:1.10.1'
    compile 'com.prolificinteractive:material-calendarview:1.1.0'
    compile 'com.google.code.gson:gson:2.5'
    //    compile 'com.google.android.gms:play-services-measurement:8.3.0'
    retrolambdaConfig 'net.orfjackal.retrolambda:retrolambda:+'
    compile 'com.google.android.gms:play-services-analytics:9.0.0'
    //    compile 'com.google.android.gms:play-services-location:9.0.0'
}



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

整个错误:

Error:A problem occurred configuring project ':app'. Could not resolve all dependencies for configuration ':app:_debugCompile'. Could not find com.google.android.gms:play-services-measurement:9.0.0. Searched in the following locations: https://jcenter.bintray.com/com/google/android/gms/play-services-measurement/9.0.0/play-services-measurement-9.0.0.pom https://jcenter.bintray.com/com/google/android/gms/play-services-measurement/9.0.0/play-services-measurement-9.0.0.jar https://repo1.maven.org/maven2/com/google/android/gms/play-services-measurement/9.0.0/play-services-measurement-9.0.0.pom https://repo1.maven.org/maven2/com/google/android/gms/play-services-measurement/9.0.0/play-services-measurement-9.0.0.jar https://oss.sonatype.org/content/repositories/snapshots/com/google/android/gms/play-services-measurement/9.0.0/play-services-measurement-9.0.0.pom https://oss.sonatype.org/content/repositories/snapshots/com/google/android/gms/play-services-measurement/9.0.0/play-services-measurement-9.0.0.jar file:/C:/Users/Re'em/AppData/Local/Android/sdk/extras/android/m2repository/com/google/android/gms/play-services-measurement/9.0.0/play-services-measurement-9.0.0.pom file:/C:/Users/Re'em/AppData/Local/Android/sdk/extras/android/m2repository/com/google/android/gms/play-services-measurement/9.0.0/play-services-measurement-9.0.0.jar file:/C:/Users/Re'em/AppData/Local/Android/sdk/extras/google/m2repository/com/google/android/gms/play-services-measurement/9.0.0/play-services-measurement-9.0.0.pom file:/C:/Users/Re'em/AppData/Local/Android/sdk/extras/google/m2repository/com/google/android/gms/play-services-measurement/9.0.0/play-services-measurement-9.0.0.jar Required by: frontend:app:unspecified

最佳答案

你能改变吗

classpath 'com.google.gms:google-services:2.0.0-alpha3' to the latest version say 
classpath  'com.google.gms:google-services:3.0.0'

并检查

礼貌 user3330522 answer

关于android - Gradle 找不到不存在的依赖项 - Android 工作室,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37459454/

相关文章:

java - 使用 Gradle 在 Java 之前/与 Java 一起编译 Scala

安卓工作室错误 : Configuration with name 'default' not found

java - "com.google.zxing.client.android.CaptureActivity"未找到且无法解析

java - 设置阿尔巴尼亚/黑山语言环境时,它会恢复为默认值

java - 关于Gradle for Android Development的一些问题

Gradle 依赖树,(*) 是什么意思?

android - 错误的类文件魔法或版本

android - 在运行时以编程方式更改复选框 colorAccent

java - Android:我需要像图像一样做一个菜单

android - 为上一个项目编写Gradle