无法构建应用程序错误:任务':app:package“packageName”Debug'的执行失败。 >值(73836)> 0x0000ffff

时间:2016-05-20 12:51:04

标签: android android-gradle build.gradle

无法构建应用。

构建失败:

Error:Execution failed for task ':app:package "packageName" Debug'.> value (73836) > 0x0000ffff

该项目是成功构建的,但添加了一行代码(Log.i()) 重新启动(无效缓存)按预期工作

后接收失败的构建消息

的gradle-wrapper.properites

distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.12-all.zip

这是我的build.gradle文件

apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion '23.0.3'

defaultConfig {

    minSdkVersion 16
    targetSdkVersion 23
    versionCode 1
    versionName '1.0'
    renderscriptTargetApi 23
    renderscriptSupportModeEnabled true
    multiDexEnabled true

}

buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'

    }
}


packagingOptions {
    exclude 'META-INF/DEPENDENCIES.txt'
    exclude 'META-INF/DEPENDENCIES'
    exclude 'META-INF/dependencies.txt'
    exclude 'META-INF/LICENSE.txt'
    exclude 'META-INF/LICENSE'
    exclude 'META-INF/license.txt'
    exclude 'META-INF/LGPL2.1'
    exclude 'META-INF/NOTICE.txt'
    exclude 'META-INF/NOTICE'
    exclude 'META-INF/notice.txt'
}
useLibrary 'org.apache.http.legacy'
}

dependencies {
compile files('libs/adobeMobileLibrary.jar')
compile 'org.twitter4j:twitter4j-core:4.0.4'
compile 'com.mcxiaoke.volley:library:1.0.19'
compile 'com.facebook.android:facebook-android-sdk:4.8.1'
compile 'com.google.code.gson:gson:2.4'
compile 'com.daimajia.swipelayout:library:1.2.0@aar'
compile 'com.android.support:design:23.2.0'
compile 'com.android.support:percent:23.2.0'
compile 'com.squareup.okhttp3:okhttp:3.0.0-RC1'
compile 'com.squareup.okio:okio:1.6.0'
}

2 个答案:

答案 0 :(得分:1)

androidstudio1.5 gradle 2.2.0-alpha,就像这个问题一样发生在我身上;将gradle固定为1.5.0;然后解决了

答案 1 :(得分:1)

不是一个真正的答案,但对我来说唯一有用的就是杀死java进程并再次点击Run