为啥我的 gradle 需要这么长时间? > 13 分钟

Posted

技术标签:

【中文标题】为啥我的 gradle 需要这么长时间? > 13 分钟【英文标题】:Why does my gradle take so long? > 13 minutes为什么我的 gradle 需要这么长时间? > 13 分钟 【发布时间】:2015-10-10 05:56:02 【问题描述】:

为什么 Gradle 在我的计算机上需要这么长时间?尤其是在做了一些小改动之后?有些东西必须被打破。有没有人有任何想法?我在 Ubuntu 15.04 上使用 android Studio。 Android Studio 已全面更新。

如果相关,这是我的 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:1.3.0'
        classpath 'com.google.gms:google-services:1.3.0-beta1'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    


allprojects 
    repositories 
        jcenter()
    

还有……

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

android 
    compileSdkVersion 23
    buildToolsVersion '23.0.0'

    defaultConfig 
        applicationId "ca.deanresin.arecipebook"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    
    buildTypes 
        release 
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        
    


dependencies 
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:23.0.1'
    compile 'com.google.android.gms:play-services:7.8.0'
    compile 'com.facebook.android:facebook-android-sdk:4.1.0'
    compile 'com.android.support:design:23.0.1'

【问题讨论】:

【参考方案1】:

我觉得这条线很奇怪:

classpath 'com.google.gms:google-services:1.3.0-beta1'

如果您使用 Google 服务 SDK,它应该在应用的 gradle 中,而不是在项目中。而且您的应用中也已经有 v7.8.0 之一。

这条线是什么?需要这个吗?

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

【讨论】:

你是对的。我不需要那些。不过似乎仍然很慢。也许如果我从谷歌服务中挑选我需要的东西而不是使用整个东西? 最新的 Google 服务 SDK 是 v8.1.0,它们被分成不同的库。所以它可能有助于加快速度。另外,我认为最新的 buildToolsVersion 是23.0.1。我看不到您的 gradle 脚本的进一步优化点。

以上是关于为啥我的 gradle 需要这么长时间? > 13 分钟的主要内容,如果未能解决你的问题,请参考以下文章

为啥我的 mysql 简单外连接需要这么长时间?

为啥我的 SELECT 查询不需要我的 UPDATE 查询需要这么长时间?

为啥打开与我的数据库的连接需要这么长时间?

为啥这个查询需要这么长时间?

为啥我的 Create React App Dev Server 需要这么长时间才能启动?

为啥更新域的名称服务器需要这么长时间? [关闭]