gpt4 book ai didi

android - 无法在 ubuntu 上的 android studio 1.4 中解析 : junit:junit:4. 12

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:35:45 25 4
gpt4 key购买 nike

当我在 ubuntu 上的 android studio 1.4 中创建新项目时。

gradle 的同步完成时出现此错误

testCompile 'junit:junit:4.12' 

在 app/build.gradle 上有消息

Error:(23, 17) Failed to resolve: junit:junit:4.12
Show in File
Show in Project Structure dialog

//构建gradle(应用模块)

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
applicationId "com.example.abhishek.vearch"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

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

//构建gradle(项目)

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

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

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

allprojects {
repositories {
jcenter()
}
}

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

最佳答案

有些人通过添加以下 block 来解决存储库缺少 URL 的问题。

android {
.....
repositories {
maven { url 'http://repo1.maven.org/maven2' }
}
.....
}

只需提及:右键单击“应用程序”文件夹并转到“打开模块设置”。然后移动到最后一个选项卡“依赖项”并通过搜索重新添加 junit。我尝试添加早期版本,但无法正常工作。

关于android - 无法在 ubuntu 上的 android studio 1.4 中解析 : junit:junit:4. 12,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32969162/

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