Android Studio 3.1 卡在 Configure Build 超过 30 分钟

Android Studio 3.1 stuck at Configure Build over 30 Minutes

所以我刚刚将 Android Studio 从 3.0.1 更新到 3.1。当我输入此内容时,已经过去了 30 多分钟,Android Studio 停留在 Configure build.

我做了什么:

  1. 更改项目gradle文件中的gradle版本
  2. 检查了我的互联网(它工作正常)


下面是我的屏幕快照和互联网结果


尤其是这些依赖项一直在占用时间。


我的项目build.gradle

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

buildscript {

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

        // 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
}


这是我的申请 build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.smk.carsapp"
        minSdkVersion 19
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        vectorDrawables.useSupportLibrary = true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}
configurations {
    all*.exclude group: 'com.squareup.okhttp3', module: 'okhttp'
}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:27.1.0'
    implementation 'com.android.support:exifinterface:27.1.0'
    implementation 'com.android.support:support-v13:27.1.0'
    implementation 'com.android.support:cardview-v7:27.1.0'
    implementation 'com.android.support:design:27.1.0'
    implementation 'com.google.code.gson:gson:2.8.2'
    implementation 'com.wdullaer:materialdatetimepicker:3.5.1'
    implementation 'com.squareup.okhttp3:okhttp:3.10.0'
    implementation 'com.github.bumptech.glide:glide:4.6.1'
    implementation 'com.jsibbold:zoomage:1.1.0'
    implementation 'com.siclo.ezphotopick:library:1.0.8'
    //    TEST
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
    implementation files('libs/ksoap2-android-assembly-3.6.2-jar-with-dependencies.jar')
}
repositories {
    mavenCentral()
    maven {
        url 'https://dl.bintray.com/siclo/SicloAndroidOSS'
    }
}

试试这个:

Android Studio 转到文件 -> 设置 -> 构建、执行、部署 -> 构建工具 -> Gradle

勾选'Global Gradle settings'下的'Offline work'

它将减少 80% gradle 构建时间。

并检查 gradle 依赖项

buildscript {
  dependencies {
     classpath 'com.android.tools.build:gradle:2.0.0-alpha9'
 }
 }

添加 dexOption 并给出以下 heapSize

dexOptions {
incremental = true;
preDexLibraries = false
javaMaxHeapSize "4g"
}

固定: 我按照 Santanu 的指示更改了 gradle-wrapper.properties 中的 distributionUrl

In gradle-wrapper.properties use this :-

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

Instead of 4.1-all.zip .

Click to open ScreenShot

启用切换离线模式解决了我的问题。查看屏幕截图了解更多详情。

只有 select 这一个,如果它不是 selected。它以前对我有用它需要 25 30 分钟现在只需要几秒钟