java.exe finished with non-zero exit value 2 when using Facebook SDK(java.exe 在使用 Facebook SDK 时以非零退出值 2 结束)
问题描述
当我尝试编译我的应用程序时,出现以下错误
When I try to compile my app I get a following error
Error:Execution failed for task ':app:dexDebug'.
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:Program FilesJavajdk1.7.0_60injava.exe'' finished with non-zero exit value 2
如果我摆脱 Facebook Android SDK,它可以毫无问题地编译.
If I get rid of Facebook Android SDK it compiles without a problem.
我的 build.gradle:
My build.gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 21 //tried 19 and 22 changing targetSdkVersion and buildToolsVersion accordingly
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "..."
minSdkVersion 15
targetSdkVersion 21
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
}
}
...
}
dependencies {
...
compile 'com.facebook.android:facebook-android-sdk:3.23.1' //tried older versions as well
}
推荐答案
首先你应该尝试使用 gradle :MODULE:dependencies
列出你的依赖项检查是否存在库冲突(相同的库但版本不同).在这种情况下,我认为您应该从 Facebook SDK 中排除支持库模块.
First of all you should try to list your dependencies with gradle :MODULE:dependencies
Check if there are libraries conflicts ( same library but different version ). In this case i supose you should exclude support library module from Facebook SDK.
compile ('com.facebook.android:facebook-android-sdk:3.23.1'){
exclude group: 'com.google.android', module: 'support-v4'
}
这篇关于java.exe 在使用 Facebook SDK 时以非零退出值 2 结束的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:java.exe 在使用 Facebook SDK 时以非零退出值 2 结束


- Eclipse 插件更新错误日志在哪里? 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01