4

slow gradle build に関するすべての質問を回答で確認しました。(たとえば、ここここ、...) .しかし、私のプロジェクトで gradle をビルドするのが遅すぎます。ときどき、どの建物に 5 ~ 8 分かかるか、多くのサイトで検索しましたが、今は疲れています。

Build.gradle :

apply plugin: 'com.android.application'

android {
    compileSdkVersion 24
    buildToolsVersion '25.0.2'
    defaultConfig {
        applicationId "..."
        minSdkVersion 14
        targetSdkVersion 24
        versionCode 1
        versionName "1.0"

        jackOptions {
            enabled true
            additionalParameters('jack.incremental': 'true')
        }


        dexOptions {
            incremental true
            javaMaxHeapSize "4g"
        }
    }


    compileOptions {
        incremental true
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }



    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:24.2.1'
    testCompile 'junit:junit:4.12'
    compile files('libs/TelegramNewApiLibrary.jar')
    compile files('libs/TelegramNewConvert.jar')
}
repositories {
    mavenCentral()
}

build.gradle(モジュールアプリ):

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

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


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

allprojects {
    repositories {
        jcenter()
    }
}

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

gradle.properties :

org.gradle.jvmargs=-Xmx4g -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
 org.gradle.parallel=true
 org.gradle.daemon = true

私のアンチウイルスは無効になっており、プロジェクトでオフライン作業が有効になっています。

システムラム:4G

システムCPU:3.10GH

アンドロイド スタジオ バージョン: 2.2.3

誰でも私を助けることができますか?

4

2 に答える 2

0

Gradle Build は CPU 速度や RAM とは関係がないことを理解してください。お使いの PC でビルドが遅くなる理由は、インターネット接続が原因です。ビルドには約 100 MB 近くかかることがあります。プロセスを完了するためのデータの。インターネット接続が速く、接続の PING 速度が遅い場合でも、時間がかかります。御時間ありがとうございます。

于 2017-03-07T17:43:18.373 に答える