Sync Gradle始终以错误停止

时间:2015-05-08 13:07:05

标签: android android-studio gradle

对于向后兼容性问题,我需要com.google.android:support-v4:r13,但Sync Gradle总是会出现错误:

Error:Could not find com.google.android:support-v4:r13.
Required by:GA:app:unspecified
GA:app:unspecified > com.fizz-buzz:fb-android-dagger:1.0.3

我有依赖:

dependencies {
compile files('libs/support-v4-r13.jar')
compile 'com.google.android:support-v4:r13'

我甚至拥有我的libs文件夹 enter image description here

我做了一个'添加为库'在它上面,清理了项目,但没有任何作用。 我做错了什么?

也许这会给出额外的指示。当我做Rebuild时,我得到了这个: enter image description here

1 个答案:

答案 0 :(得分:-1)

您的依赖关系:

dependencies { 
    compile files('libs/support-v4-r13.jar')  // <-- try not use jars
    compile 'com.google.android:support-v4:r13' // <-- does not exist
}

不存在的库(请参阅版本和日期):http://mvnrepository.com/artifact/com.google.android/support-v4

应该是:

dependencies {
    com.android.support:support-v4:22.0.1 // <-- gradle dependency
}

始终参考文档:http://developer.android.com/tools/support-library/features.html#v4