Build Gradle Android studio Build Slow

时间:2015-11-24 06:12:00

标签: android performance gradle build

我使用Android Studio构建我的Android应用程序。但我的笔记本电脑需要5分钟来构建应用程序。我不知道为什么。构建gradle的速度总是很慢。这是我的代码Build Gradle:

    apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'

android {
    compileSdkVersion 23
    buildToolsVersion '23.0.2'
    repositories { mavenCentral() }
    defaultConfig {
        applicationId "thsoft.com.sosme"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.android.support:design:23.1.1'
    compile 'com.google.android.gms:play-services:8.1.0'
    compile 'com.wang.avi:library:1.0.0'
    compile 'com.squareup.picasso:picasso:2.5.2'
    compile 'com.nineoldandroids:library:2.4.0'
    compile 'com.jakewharton:disklrucache:2.0.2'
    compile 'com.squareup.retrofit:retrofit:2.0.0-beta2'
    compile 'com.squareup.okhttp:okhttp:2.5.0'
    compile 'com.squareup.retrofit:converter-gson:2.0.0-beta2'
    compile 'com.mcxiaoke.volley:library-aar:1.0.0'
    compile 'com.crittercism:crittercism-android-agent:5.5.0-rc-1'
}
你可以帮我解决一下吗?谢谢!

4 个答案:

答案 0 :(得分:3)

gradle code 没有任何问题,但依赖性过多。这取决于处理器的速度和内存。尝试获得 8gb的内存,你就可以了。根据官方网站,最低要求是4gb !!

答案 1 :(得分:0)

安装最新的Android Studio 2.0预览版。它非常棒,它肯定会减少gradle构建时间。我们试试

答案 2 :(得分:0)

增加你的构建时间你只需要增加你的RAM 并在您的gradle文件中删除那些不需要的依赖项。

您使用过庞大的播放服务。如果您使用的是Google Cloud Messaging,请使用com.google.android.gms:play-services-gcm:8.3.0。绝对会减少你的构建时间。不要把整体游戏服务。具体说明您正在使用的游戏服务。

此链接可能会帮助您https://developers.google.com/android/guides/setup

祝你好运

答案 3 :(得分:0)

尝试启用离线模式以忽略最新检查:

http://tools.android.com/recent/androidstudio040released

或者将构建类型更改为Debug: 构建变体 - >调试(左下角AS)

格鲁克!