Android Studio 中的 gradle 错误

Android Studio 中的 gradle 错误
错误:(24,17)无法解析:junit:junit:4.12
“打开文件:/home/jeevansai/AndroidStudioProjects/MyApplication/app/build.gradle”

Android Studio 在制作项目时出现上述错误,出现了很多问题。有人能告诉我解决办法吗?

输出 cat /home/jeevansai/AndroidStudioProjects/MyApplication/app/build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 21
    buildToolsVersion '23.0.1'

    defaultConfig {
        applicationId "com.example.jeevansai.myapplication"
        minSdkVersion 8
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    final def types = buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    types
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.0.1'
    compile 'com.android.support:design:23.0.1'
}

输出apt-cache policy junit4

junit4:
  Installed: 4.12-2ubuntu1
  Candidate: 4.12-2ubuntu1
  Version table:
 *** 4.12-2ubuntu1 0
        500 http://in.archive.ubuntu.com/ubuntu/ wily/main amd64 Packages
        100 /var/lib/dpkg/status

答案1

Gradle 是 Android Studio 中集成的构建工具:它从 maven 存储库(maven 是另一个著名的构建工具,具有包依赖项功能和远程存储库生态系统)下载项目依赖项(代码中使用的 jar 文件)。最常用的存储库之一是jcenter()

你的 gradle 文件缺少存储库配置:将这一段代码添加到你的 gradle 文件中(/home/jeevansai/AndroidStudioProjects/MyApplication/app/build.gradle):在apply pluginandroid {...}部分之间。

apply plugin: 'com.android.application'

repositories {
     jcenter()
}

android {
     compileSdkVersion 21
...

或者,如果您现在没有编写单元测试,您可以简单地注释掉文件上的 junit 依赖项app/build.gradle

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    //testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.0.1'
    compile 'com.android.support:design:23.0.1'
}

无论如何,您可以随时从 maven central 下载所需的工件并放入您的/libs目录中:

wget 'http://central.maven.org/maven2/junit/junit/4.12/junit-4.12.jar' -O /home/jeevansai/AndroidStudioProjects/MyApplication/app/libs/junit-4.12.jar

相关内容