未找到Gradle DSL方法:“ testimplementation()”?

时间:2019-05-22 11:27:58

标签: android android-gradle

Gradle DSL method not found: 'testimplementation()' 

项目“我的项目”可能正在使用不包含该方法的Gradle版本。 生成文件可能缺少Gradle插件。 应用gradle插件

我已经尝试过

  1. 删除项目的.gradle已重新同步
  2. 无效/缓存并重新启动使用
  3. 本地gradle分发选项

成绩文件

apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    buildToolsVersion "22.0.1"

    defaultConfig {
        applicationId "com.techknocorp.a.metturcable"
        minSdkVersion 14
        targetSdkVersion 26
        versionCode 532016
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testimplementation 'junit:junit:4.12'
    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.android.support:design:26.1.0'
    androidTestImplementation 'com.android.support.test:runner:1.1.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso- 
 core:3.1.1'
    implementation files('libs/opencsv-2.3.jar')
}

顶级Gradle //顶层构建文件,您可以在其中添加所有子项目/模块共有的配置选项。

buildscript {
    repositories {
        jcenter()
        google()
        maven {
            url 'https://maven.google.com/'
            name 'Google'
        }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.4.1'

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

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

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

1 个答案:

答案 0 :(得分:0)

使用testImplementation代替testimplementation

dependencies {
    //....
    testImplementation 'junit:junit:4.12'
    //..
}