Android Studio OS X:Gradle似乎与jcenter没有关联(?)

时间:2017-03-03 14:23:37

标签: macos android-studio gradle android-gradle

我每年只会进行一次Android开发,因此我不会每天都使用Android Studio。

我的目标是建立一个特定的项目,但因为我得到了奇怪的错误,我最终决定:

  • 完全卸载Android Studio
  • 重新安装Android Studio(2.2.3和2.3,结果相同)
  • 使用IDE创建一个简单的项目
  • 尝试构建它

但它没有构建

由于这可能是最好的错误消息,控制台中的gradlew task表示:

FAILURE: Build failed with an exception.

* What went wrong:
A problem occurred configuring root project 'HelloAndroid'.
> Could not resolve all dependencies for configuration ':classpath'.
   > Could not resolve com.android.tools.build:gradle:2.2.3.
     Required by:
         :HelloAndroid:unspecified
      > Could not resolve com.android.tools.build:gradle:2.2.3.
         > org.apache.http.conn.ssl.SSLConnectionSocketFactory.<init>(Ljavax/net/ssl/SSLContext;Ljavax/net/ssl/HostnameVerifier;)V

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

您可以使用--debug --info --stacktrace here找到完整的日志

我已经检查并重新安装了Java 8,试图在我的网络设置中找到任何阻塞,当然重新安装了Android Studio并重新启动了我的机器。

这些问题的原因是什么?或者我能找到原因吗?

编辑:我的构建文件是Android Studio生成的文件,我没有手动编辑它们。 build.gradle(项目):

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.3'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

build.gradle(模块):

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"
    defaultConfig {
        applicationId "com.example.below.helloandroid"
        minSdkVersion 25
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:25.2.0'
    compile 'com.android.support:design:25.2.0'
    testCompile 'junit:junit:4.12'
}

2 个答案:

答案 0 :(得分:2)

这看起来很奇怪,因为堆栈跟踪抱怨自4.4以来在httpclient中可用的方法不存在以及使用包4.4.1的Gradle版本2.14.1。

我目前唯一想象的是,你的Java ext目录中有一个较旧版本的httpclient,所以使用那个没有这个方法的旧版本的类。

答案 1 :(得分:0)

在@Vampire,@ Michal和@dscheller的帮助下,我通过删除〜/ Library / Java / Extensions中的所有内容(包括http客户端)解决了这个问题