在构建时,Gradle给了我Failed to resolve: com.github.PhilJay:MPAndroidChart:v2.2.4
错误。
我已在jitpack
添加了build.gradle
:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
flatDir {
dirs 'aar'
}
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
这是基于here。我错过了什么?
答案 0 :(得分:0)
切换到最新版本:
compile 'com.github.PhilJay:MPAndroidChart:v3.0.0-beta1'
始终使用主要来源的信息 - 在本例中为MPAndroidChart Github Repo Readme.MD
如果在代理后面在gradle.properties
中配置代理设置,如下所示:
systemProp.http.proxyHost=103.7.11.34
systemProp.https.proxyPort=8080
systemProp.https.proxyHost=103.7.11.34
systemProp.http.proxyPort=8080
注意:上面行中的IP地址和端口将被您的代理服务器IP地址(或网址)和端口
替换答案 1 :(得分:0)
请检查是否在build.gradle中添加了以下插件,其中添加了
的依赖性
编译' com.github.PhilJay:MPAndroidChart:v2.2.4'
"申请插件:' maven'"
答案 2 :(得分:-1)
Did you add the following in your root build.gradle file: if not then add this.
repositories {
maven { url "https://jitpack.io" }
}
然后重新启动Android Studio
和Rebuild
您的项目。
我遇到同样的问题,重新启动
android studio
后问题解决了 - >rebuild project.
如果上述方法无法解决,您可以将
version
中distributionUrl
的{{1}}更改为可用newest。