admin管理员组

文章数量:1550527

Received status code 409 from server: Conflict

Android studio在拉取git代码时,build过程中出现了409错误:
Could not GET ‘http://github/bmarrdev/android-DecoView-charting/v0.9.6/android-DecoView-charting-v0.9.6.pom’. Received status code 409 from server: Conflict
Disable Gradle ‘offline mode’ and sync project

解决方案

  1. 找到一篇相关问题博客,并没有解决问题,拉取项目里写法和此篇博客相同
    https://github/jsibbold/zoomage/issues/39

  2. 猜测网络原因没有把库下载好,尝试切换网络重新拉取代码,结果还是没有成功,出现以下错误:
    Could not resolve all files for configuration ‘:Base:debugCompileClasspath’.

Could not find android-DecoView-charting.jar (com.github.bmarrdev:android-DecoView-charting:v0.9.6).
Searched in the following locations:
https://jitpack.io/com/github/bmarrdev/android-DecoView-charting/v0.9.6/android-DecoView-charting-v0.9.6.jar

Possible solution:

  • Declare repository providing the artifact, see the documentation at https://docs.gradle/current/userguide/declaring_repositories.html
  1. 检查依赖包里是否有多个地方引用同样的包,发现有两处引用,注释或者删掉一处,再把引用处(build.gradle(:Base))里的版本号升级到最高版本就解决了。

查找到最高版本为1.2:
https://github/bmarrdev/android-DecoView-charting

dependencies {
compile ‘com.github.bmarrdev:android-DecoView-charting:v1.2’
}

最终原因

  1. 多个地方的dependencies 引用了重复依赖。
  2. 版本太旧

本文标签: CodestatusreceivedconflictServer