无法解决:Android Studio中的com.mcxiaoke.volley:library:1.0.19

时间:2016-03-06 04:22:35

标签: java android android-volley android-library

我正在尝试通过添加以下依赖项来更新我的项目库:

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.2.0'
    compile 'com.android.support:design:23.2.0'
}
dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile "com.android.support:appcompat-v7:22.1.1"
    compile 'com.mcxiaoke.volley:library:1.0.19'
}

不幸的是,我收到的错误是:

错误:(30,13)无法解决:com.mcxiaoke.volley:library:1.0.19
错误:(23,17)无法解决:junit:junit:4.12

3 个答案:

答案 0 :(得分:2)

出现问题是因为您使用的是deprecated and no longer being maintained的jar文件。

使用它来包含齐射库:

compile 'com.android.volley:volley:1.0.0'

而不是compile 'com.mcxiaoke.volley:library:1.0.19'作为齐射依赖。

答案 1 :(得分:1)

在此处继续跟踪:https://github.com/google/volley 现在它是:

    compile 'com.android.volley:volley:1.1.0'

答案 2 :(得分:0)

在项目级构建gradle文件中添加mavenCentral()`

{{1}}