MPAndroidChart v3.1.0 在github上找不到
Posted
技术标签:
【中文标题】MPAndroidChart v3.1.0 在github上找不到【英文标题】:MPAndroidChart v3.1.0 Could not find on github 【发布时间】:2022-01-16 04:51:59 【问题描述】:社区,我正在尝试使用 java 语言在我的 android 应用程序中实现 MPAndroidChart,但是当我同步项目时 android studio 返回错误。
找不到 com.github.PhilJay:MPAndroidChart:v3.1.0.Required by: project :app
我已经将 put de 依赖项放在我的 build.gradle(app) 文件中,如下所示:
dependencies
implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
并添加存储库:
repositories
maven url 'https://jitpack.io'
我也尝试实施here 提出的所有解决方案,但即使在重新启动 android studio、清理项目、... 所以我需要帮助。
【问题讨论】:
【参考方案1】:我已经按照Github issues 中针对该项目的说明解决了这个问题 要解决这个问题,您只需在 settings.gradle 中添加以下代码
dependencyResolutionManagement
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories
google()
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
maven url 'https://jitpack.io' //Add this line in your settings.gradle
别忘了在你的 build.gradle 中实现这个库(应用级别)
dependencies
implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
【讨论】:
以上是关于MPAndroidChart v3.1.0 在github上找不到的主要内容,如果未能解决你的问题,请参考以下文章