android java.exe以非零退出值2结束

时间:2016-07-18 08:54:18

标签: android

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.3"

    defaultConfig {
        applicationId "com.example.insp.placesapp"
        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.1.1'
    compile 'com.android.support:design:23.1.1'
    compile 'com.google.android.gms:play-services:9.2.0'
}

1 个答案:

答案 0 :(得分:0)

您收到此错误的主要原因是您正在编译整个

compile 'com.google.android.gms:play-services:9.2.0'

原样,经常导致64K method limit

我强烈建议不要这样编译,请参阅Setting Up Google Play Servicesbuild.gradle中有一些带有说明的Google Play服务API列表。

查看列表,选择您真正需要的列表并仅编译那些。