本文介绍了Android Studio 3.0依赖问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

获取错误:

对于依赖关系:

compile 'com.googlecode.mp4parser:isoparser:1.1.22'

但出于依赖性:

compile 'com.googlecode.mp4parser:isoparser:1.1.20'

成功进行分级同步.

尝试使用存储库:

repositories {
    mavenCentral()
}

详细错误:

无法解决':app @ StagingUnitTest/compileClasspath'的依赖关系:无法解决com.googlecode.mp4parser:isoparser:1.1.22.

Unable to resolve dependency for ':app@StagingUnitTest/compileClasspath': Could not resolve com.googlecode.mp4parser:isoparser:1.1.22.

无法解析com.googlecode.mp4parser:isoparser:1.1.22.要求者: 项目:app

Could not resolve com.googlecode.mp4parser:isoparser:1.1.22.Required by: project :app

推荐答案

经过大量研究和分析,重新安装android studio 3.0可以解决此问题.

After lots of research and analysis, re-installing android studio 3.0 resolves issue.

这篇关于Android Studio 3.0依赖问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 05:20