Gradle downloads" builder-3.1.2.jar"永远

时间:2018-04-29 17:15:53

标签: android android-studio android-gradle

你好,我真的需要你的帮助。

我使用的是Android Studio 3.1.2和我在Android应用开发中的新功能。

所以,我在使用Gradle时遇到了一些问题。当我创建一个新项目时,Gradle构建开始,但下载需要 FOREVER 。我现在已经等了3个小时才能完成下载。

当我在浏览器中复制/粘贴下载文件( https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/3.1.2/builder-3.1.2.jar )时,只花了 30秒。我尝试了所有的东西并搜索了所有的stackoverflow,但我一无所获:(

谢谢

更新 以下是我提出的两个文件。

我的项目build.gradle文件:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.bg.selim.reminder"
        minSdkVersion 15
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

我的gradle.properties文件:

# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx1536m
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

项目根文件夹中的build.gradle文件

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

buildscript {

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


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

allprojects {
    repositories {
        google()
        jcenter()
    }
}

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

6 个答案:

答案 0 :(得分:1)

对我的团队成员来说,有两种不同的解决方案可以解决:

移动JCenter依赖

jcenter()依赖项移动到存储库依赖项的底部:

repositories {
        maven { url "https://jitpack.io" }
        maven { url "https://maven.fabric.io/public" }
        google()
        jcenter()
    }

手动使用gradle分发

这只是一种解决方法,但它应该足够,直到他们将在下一个AS版本上解决这个问题。

File > Settings > Build, Execution, deployment > Gradle -> Use local distribution并使用AndroidStudio文件夹

中的gradle版本

enter image description here

希望它能帮助你们。

问候!

答案 1 :(得分:1)

就我而言,它是通过为文件夹分配写入和修改权限来解决的:

AndroidStudio> gradle> m2repository> com> android> tools

答案 2 :(得分:0)

好的,您的文件似乎是文件,我的建议是检查您的gradle-wrapper.properties是否包含以下内容

distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip

如果没问题,请清理项目,删除app文件夹中的所有构建文件夹。

检查File > Settings > Build, Execution, deployment > Gradle > use default gradle wrapper & uncheck offline work

在同一菜单下转到Compiler,并确保只有configure on demand is checked

之后清理并同步gradle。 [确保在同步gradle时连接到网络]

答案 3 :(得分:0)

如果仍有问题,可以尝试下载builder-3.1.2.jar及其builder-3.1.2.pom文件,并将其放入Android Studio文件夹中:

AndroidStudio > gradle > m2repository > com > android > tools > build > builder > 3.1.2 

builder-3.1.2.jarbuilder-3.1.2.pom放在3.1.2文件夹下,你应该好好去。

答案 4 :(得分:0)

所以我终于解决了这个问题! :d

Jude Fernandes和xiaomi的回答非常有帮助,但没有解决我的问题。我刚刚重新安装了Android Studio(花了大约2分钟),它完美无缺。我不知道发生了什么但是...... 一切正常

感谢你对Jude和Xiaomi的宝贵帮助!

答案 5 :(得分:0)

与jcenter https断开连接也可能导致此问题 在这种情况下,它将显示以下消息:

Could not find builder.jar (com.android.tools.build:builder:3.1.2).
Searched in the following locations:
    https://jcenter.bintray.com/com/android/tools/build/builder/3.1.2/builder-3.1.2.jar

然后我用

替换gradle存储库块中的jcenter ()
jcenter {
   url "http://jcenter.bintray.com/"
}

请注意http而不是https

然后编译成功。
希望这可能会有所帮助。