【发布时间】:2016-01-26 19:48:25
【问题描述】:
当 gradle 过去下载依赖项时,为什么会再次尝试下载依赖项?
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.androied.support:appcompat-v7:23.0.1'
//compile 'com.nineoldandroids:library:2.4.0'
compile 'com.android.support:cardview-v7:23.0.1'
compile project(':sweetsheet')
compile files('libs/bolts-tasks-1.3.0.jar')
}
错误:
Error:(30, 13) Failed to resolve: com.androied.support:appcompat-v7:23.0.1
<a href="openFile:F:/projects/AndroidStudio/Samadie/app/build.gradle">Show in File</a><br><a href="open.dependency.in.project.structure">Show in Project Structure dialog</a>
我不是一直在线。我下载了appcompat-v7:
screenshot of downloaded appcompat-v7
【问题讨论】:
标签: android dependencies android-gradle-plugin