如果我的问题很尴尬,我很抱歉,因为我是一名新手程序员。
我使用Android studio 2,gradle 2.10和Windows 10.创建新项目后,gradle开始同步项目。
同步完成后,我在设置中为gradle启用“离线工作”模式。我创建的每个新项目都会再次同步。当我启用“脱机工作”时,我在构建期间收到此错误。我该如何解决这个问题?
错误:(23,17)无法解决:junit:junit:4.12
答案 0 :(得分:2)
只需从build.gradle文件中删除“testCompile junit:junit:4.12
”:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12' //remove this line and sync again... worked for me
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.android.support:support-v4:23.3.0'
compile 'com.android.support:design:23.3.0'
}
答案 1 :(得分:1)
您需要将以下内容添加到build.gradle文件中,它应该可以正常工作。
将此代码添加到build.gradle ..它将起作用。
repositories {
maven { url 'http://repo1.maven.org/maven2' }
jcenter { url "http://jcenter.bintray.com/" }
}
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.example.application"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "3.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.1.1'
compile 'com.android.support:design:23.1.1'
}