为什么我的gradle花了这么长时间? > 13分钟

时间:2015-10-10 05:56:02

标签: android android-studio gradle build

为什么Gradle在我的电脑上花了这么长时间?特别是在做了小改动之后?必须打破一些东西。有没有人有任何想法?我在Ubuntu 15.04上使用Android Studio。 Android Studio已完全更新。

enter image description here

如果相关,这是我的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 个答案:

答案 0 :(得分:3)

我认为这条线很奇怪:

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

如果您使用Google服务SDK,它应该在应用程序的gradle中,但不在项目中。你已经在应用程序中使用了v7.8.0之一。

这是什么线?这需要吗?

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