我正在开发Android应用程序并收到此错误。
com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Program Files\Java\jdk1.8.0_40\bin\java.exe'' finished with non-zero exit value 2
我在google上搜索了这个,并且知道如果我超过Android规定的dex限制就会出现此错误。我试过不同的建议解决方案 像
defaultConfig {
// Enabling multidex support.
multiDexEnabled true
}
和
dexOptions {
preDexLibraries = false
javaMaxHeapSize "4g"
}
但是这会导致我的应用程序出现其他问题。我没有在Gradle文件中使用太多库,但我不知道为什么会出现这个错误。 这是我的Gradle文件
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "ifisol.pinocal"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
repositories {
maven { url "https://repo.commonsware.com.s3.amazonaws.com" }
maven {
url "https://s3.amazonaws.com/repo.commonsware.com"
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.2.0'
compile 'com.android.support:design:23.2.0'
compile 'com.github.siyamed:android-shape-imageview:0.9.+@aar'
compile 'at.blogc:expandabletextview:1.0.1@aar'
compile project(':tedpicker')
compile 'cn.pedant.sweetalert:library:1.3'
compile 'com.hedgehog.ratingbar:app:1.1.2'
compile 'com.leavjenn.smoothdaterangepicker:library:0.2.0'
compile files('libs/gson-2.4.jar')
compile files('libs/picasso-2.5.2.jar')
compile 'com.google.android.gms:play-services:8.3.0'
}
我需要对这个问题有一个坚实的解决方案,因为这个问题已经浪费了我一整天。我会非常感谢任何帮助。