1

构建时,Gradle 给了我Failed to resolve: com.github.PhilJay:MPAndroidChart:v2.2.4错误。

我已经jitpackbuild.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
}

这是基于这里。我错过了什么?

4

3 回答 3

1

请检查您是否在 build.gradle 中添加了以下插件,您在其中添加了
compile 'com.github.PhilJay:MPAndroidChart:v2.2.4' "apply plugin: 'maven'" 的依赖项

于 2017-07-02T20:25:21.137 回答
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 地址(或 url)和端口

于 2016-07-28T05:46:48.530 回答
-1

Did you add the following in your root build.gradle file: if not then add this.

repositories {
    maven { url "https://jitpack.io" }
}

并重新启动Android StudioRebuild您的项目。

我遇到了同样的问题,重启后问题解决了android studio-->rebuild project.

此外,如果上面没有解决,您可以将in更改version为可用的最新.distributionUrlgradle-wrapper.properties

于 2016-07-28T05:55:49.373 回答