gpt4 book ai didi

java - Android studio v2.2.2 error(27,17) 无法解析junit :junit4. 12

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:15:21 26 4
gpt4 key购买 nike

我到处搜索这个答案并尝试了多种方法来解决这个问题,但由于我是这个 IDE 的新手,我需要一些帮助。

我所做的只是在 android studio 中创建了一个空项目,在我对无法构建的文件进行更改之前,我的消息 gradle sync 中不断出现 7 个错误。

Errors:

  1. (27,17) 解析失败:junit:junit:4.12
  2. 解析失败:javax.inject:javax.inject:1
  3. 解析失败:javax.annotation:javax.annotation-api:1.2
  4. 解析失败:com.google.code.findbugs:jsr305:2.0.1
  5. 解析失败:org.hamcrest:hamcrest-library:1.3
  6. 解析失败:org.hamcrest:hamcrest-integration:1.3
  7. 解析失败:com.squareup:javawriter:2.1.1

这是我的名为“myApplication”的项目

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

allprojects {
repositories {
jcenter()
}
}

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

这是我构建的 gradle module:app

apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion "24.0.3"
defaultConfig {
applicationId "test.app.stannah.com.uk"
minSdkVersion 15
targetSdkVersion 24
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
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:24.2.1'
testCompile 'junit:junit:4.12'
}

有人可以告诉我如何处理这些错误吗?

问候

最佳答案

build.gradle 中删除不需要的库,

compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
testCompile 'junit:junit:4.12'

还有

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

关于java - Android studio v2.2.2 error(27,17) 无法解析junit :junit4. 12,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40396765/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com