首页 文章

Gradle无法找到不存在的依赖项 - Android studio

提问于
浏览
0

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

Gradle sync永远不会返回ok . 它得到了错误:

错误:找不到com.google.android.gms:play-services-measurement:9.0.0 . 要求:前端:app:未指定

有趣的是,我在整个git文件夹中抓取了字符串“measurement”的每个内容,并在模块应用程序中找到了只有一个,build.gradle,它被评论,甚至没有版本gradle抱怨:

dependencies {
...
//    compile 'com.google.android.gms:play-services-measurement:8.3.0'
...
}

有人可以帮忙吗?我真的很喜欢它,因为我已经在这里挣扎了几个小时 . Thx提前!

项目(名为“frontend”)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'

整个错误:

错误:配置项目':app'时出现问题 . 无法解析配置':app:_debugCompile'的所有依赖项 . 找不到com.google.android.gms:play-services-measurement:9.0.0 . 在以下位置搜索: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文件:/ 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文件:/ 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文件:/ 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文件: /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要求:前端:app:未指定

1 回答

  • 3

    你能改变吗?

    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

相关问题