更新Android Studio和Gradle后,Gradle项目同步失败

时间:2019-01-17 09:54:22

标签: android-studio junit android-gradle

在Android Studio中将Gradle的更新应用到版本3.3.0之后,在同步有关junit 4.12的Gradle时发生了错误。

错误是:在类型为org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler的对象上找不到参数[junit:junit:4.12]的方法testImplementation()。

更新前没有错误。当我将最后三个依赖项(junit,测试运行器,测试浓缩咖啡)添加到gradle文件时,会发生错误。我已经看过先前的问题,但找不到解决方案。这是我的gradle文件:

项目Gradle文件

buildscript {

    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.3.0'
    }
}

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

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

App Gradle文件

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.example.hhs.haberler"
        minSdkVersion 15
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        vectorDrawables.useSupportLibrary = true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support:design:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation 'com.android.support:support-v4:28.0.0'
    implementation 'com.android.support:cardview-v7:28.0.0'
    implementation 'com.android.support:recyclerview-v7:28.0.0'
    implementation 'com.android.support:customtabs:28.0.0'
    implementation 'com.android.support:preference-v7:28.0.0'

    implementation "android.arch.lifecycle:extensions:1.1.1"
    implementation 'com.android.support:support-vector-drawable:28.0.0'
    annotationProcessor "android.arch.lifecycle:compiler:1.1.1"
    implementation "android.arch.persistence.room:runtime:1.1.1"
    annotationProcessor "android.arch.persistence.room:compiler:1.1.1"

    implementation 'com.google.code.gson:gson:2.8.5'
    implementation 'com.squareup.retrofit2:retrofit:2.4.0'
    implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
    implementation 'com.squareup.picasso:picasso:2.71828'
    implementation 'com.github.curioustechizen.android-ago:library:1.4.0'
    implementation 'de.hdodenhof:circleimageview:2.2.0'
    implementation 'com.github.bumptech.glide:glide:4.8.0'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
    implementation 'com.github.chrisbanes:PhotoView:2.1.4'
    implementation 'gr.pantrif:easy-android-splash-screen:0.0.1'

    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso- core:3.0.2'
}

1 个答案:

答案 0 :(得分:1)

Android Studio有一个错误。 我猜您PC的语言是土耳其语。如果您在gradle文件中写入“ androidTestApi”包括“ androidTestImplementation”,则Android Studio会给出以下警告:

  

警告:配置'androidTestApi'已过时,并已替换为'androidTestİmplementation'。   它将于2018年底删除。有关更多信息,请参阅:http://d.android.com/r/tools/update-dependency-configurations.html   受影响的模块:应用

请注意“警告”中的强文本。在androidTestİmplementation中有大写的İ,因为您PC的语言是土耳其语,而土耳其语的字母表中有大写的İ。

因此,如果将 androidTestImplementation 替换为androidTestİmplementation,问题将得到解决。

或将您的PC语言设置为英语:)