我是android新手。我刚刚在android studio中开始了一个新项目。我的控制台出错了。错误是:
Error:Failed to complete Gradle execution.
Cause:
Process 'command '/opt/android-studio/jre/bin/java'' finished with non-zero exit value 2
有人知道导致此错误的原因是什么吗?
这是我的build.gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.0"
defaultConfig {
applicationId "com.example.root.myapplication"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.0.0'
testCompile 'junit:junit:4.12'
}
答案 0 :(得分:0)
在错误描述中,它显示Process'命令'/ opt / android-studio / jre / bin / java'。
您的java路径是为您的jre环境定义的。
您需要将其设置为jdk环境。