Gradle构建继续运行

时间:2016-04-04 21:23:07

标签: android intellij-idea gradle

Gradle继续在IntelliJ上运行,并在“Gradle build using tasks:[:app:generateDebugSources,:app:generateDebugAndroidTestSources,:app:compileDebugSources,:app:compileDebugAndroidTestSources]”中被冻结。我从昨天开始一直在寻找解决方案,但没有运气。

的build.gradle:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.3"

    defaultConfig {
        applicationId "com.example.predator.myapplication"
        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'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.2.1'
}

1 个答案:

答案 0 :(得分:0)

好的,我可以通过将构建工具版本更新到24来解决它。