如何修复Gradle需要花费很多时间来构建应用程序?

时间:2016-09-08 11:30:46

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

我需要帮助解决Android Studio中Gradle build的问题。

我想知道它有什么问题..?

这是我的系统配置

Here Is My System Config

我正在使用: Android studio 2.1.1 gradle-2.14.1

我的问题是,如果我只对项目进行微小的更改,那么构建项目需要5-10分钟。

我也尝试这些设置:

gradle.properties

org.gradle.daemon=true
org.gradle.parallel=true

这是Gradle文件

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.3"

    defaultConfig {
        applicationId "com.midmesolo.mindme"
        vectorDrawables.useSupportLibrary = true
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"

            }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    aaptOptions {
        additionalParameters "--no-version-vectors"
    }
}
dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.4.0'
    compile 'com.android.support:design:23.4.0'
    compile 'com.mcxiaoke.volley:library:1.0.17'
    compile 'com.facebook.android:facebook-android-sdk:4.+'
    compile 'com.squareup.picasso:picasso:2.5.2'
    compile 'de.hdodenhof:circleimageview:2.1.0'
    compile 'me.zhanghai.android.materialprogressbar:library:1.1.7'
}

2 个答案:

答案 0 :(得分:-1)

通常,gradle构建需要一些时间,尤其是在Android中。

您可以在互联网上找到一些有关此问题的有用文章:

http://kevinpelgrims.com/blog/2015/06/11/speeding-up-your-gradle-builds/

https://www.timroes.de/2013/09/12/speed-up-gradle/

http://zeroturnaround.com/rebellabs/making-gradle-builds-faster/

你可以稍微减少建造时间,这通常不是革命性的改变。

答案 1 :(得分:-1)

在我的build.gradle我添加了这一行。数字2表示2GB。

dexOptions {
     javaMaxHeapSize "2g"
}

注意:此处的值完全是可选的和情境的。如果你有更高的内存;你可以献出一半。如果你有不到那么坚持默认值。