Android Studio gradle sync很慢

时间:2017-06-22 19:34:39

标签: android android-studio gradle android-gradle

每次我在我的任何项目中同步我的gradle文件时,在此步骤中需要花费10-15分钟: Gradle:解决工件multidex-instrumentation.aar(com.android.support:multidex-instrumentation:1.0.1)

我尝试删除.gradle文件夹,重置缓存,离线模式,内存大小......没有任何效果。

如果删除m2repository并再次下载,则会正常下载此特定文件夹(multidex-instrumentation / 1.0.1),但始终会在同一步骤中停留。

有任何线索吗?

gradle.properties:

org.gradle.jvmargs=-Xmx4096m

项目/的build.gradle:

buildscript {
    repositories {
        jcenter()
        maven {
            name "crashlytics"
            url "https://maven.fabric.io/public"
        }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.3.3'
        classpath 'com.google.gms:google-services:3.0.0'
        classpath 'io.fabric.tools:gradle:1.+'
    }
}

应用程序/的build.gradle:

compileSdkVersion 25
buildToolsVersion "25.0.3"

0 个答案:

没有答案