解析失败:com.github.PhilJay:MPAndroidChart:v3.1.0



你能解释一下这个问题的解决方法吗?

无法解析:com.github.PhilJay:MPAndroidChart:v3.1.0显示在项目结构对话框中受影响模块:app

我也遇到了同样的问题。我通过添加jitpack解决了这个问题。要构建的IO存储库。Gradle如下:

buildscript {
repositories {
google()
mavenCentral()
// jcenter()
maven {url 'https://jitpack.io'}
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.3"
classpath 'com.google.gms:google-services:4.3.10'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
//  jcenter()
maven {url 'https://jitpack.io'}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}

我以前包括jcenter()得到这个工作,但当我读到,jcenter()很快关闭我去寻找另一个解决方案。添加jitpack解决了这个问题。

请在应用级构建中添加philjay依赖项。gradle如下:

implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'

并将dependencyResolutionManagement中的这些行添加到Settings.gradle:

dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}

相关内容

  • 没有找到相关文章

最新更新