编译' com.mcxiaoke.volley:library:1.0.19'抛出错误

时间:2017-06-01 20:05:15

标签: android android-gradle android-volley

我想在下一个项目中使用Volley。所以我通过添加

导入它
compile 'com.mcxiaoke.volley:library:1.0.19'

build.gradle文件中的这一行 但是,只要我再次同步gradle并尝试运行应用程序

  

错误:任务':app:compileDebugJavaWithJavac'执行失败。   无法打开本地类集分析写入缓存(C:\ Users \ Vaibhav \ AndroidStudioProjects \ Volley.gradle \ 3.3 \ tasks_app_compileDebugJavaWithJavac \ localClassSetAnalysis)。   在锁定文件中找到意外的锁定协议。预计3,发现0。

出现了这个错误。我已尝试过所有可能的解决方案,例如

  

删除我的.gradle文件夹,构建清洁项目,无效/缓存重启

enter image description here

此图像显示错误以及代码

1 个答案:

答案 0 :(得分:2)

  

我想在我的下一个Android项目中使用Volley

然后使用非deprecated library

dependencies {
    ...
    compile 'com.android.volley:volley:1.0.0'
}

Official Documentation