Android Studio 3.1在30分钟内完成配置构建

时间:2018-03-28 06:21:46

标签: android android-studio build.gradle android-studio-3.1

所以我刚刚从3.0.1将Android Studio更新为3.1。在我输入时,超过30分钟已经过去,Android Studio停留在配置构建

我做了什么:

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

  3. 以下是我的屏幕快照,其中包含互联网结果

    image showing internet stats along with build log

    这些依赖性特别值得一直 further build logs


    我的项目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'
        }
    }
    

3 个答案:

答案 0 :(得分:0)

试试这个:

Android Studio转到文件 - >设置 - >构建,执行,部署 - >构建工具 - >摇篮

检查“离线工作”'在< Global Gradle设置'

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

shouldRefreshRefetchedObjects

并检查gradle依赖项

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

添加dexOption并提供以下heapSize

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

答案 1 :(得分:0)

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

  

在gradle-wrapper.properties中使用: -

     

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

     

而不是4.1-all.zip。

答案 2 :(得分:0)

Click to open ScreenShot

启用切换脱机模式已解决我的问题。查看屏幕截图以获取更多详细信息。

如果未选中此选项,则只需选择它。它以前为我工作的时间是25 30分钟,现在只需要几秒钟