在Android Studio中构建项目时出现Java.exe错误

时间:2016-01-01 17:19:53

标签: java android gradle

在我尝试运行应用程序时创建新项目后,它显示构建失败错误。

我在互联网上搜索它,他们说这可能是由于重复gradle库或gradle文件中的重复依赖,但在我的情况下它并非如此。

这是我的build.gradle文件:

apply plugin: 'com.android.application'
android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"
    defaultConfig {
        applicationId "com.example.naveenjain.ayusch"
        minSdkVersion 14
        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'
}

enter image description here

1 个答案:

答案 0 :(得分:-1)

尝试删除此行:

compile project(':app:ParseUI-Widget')

或者你可以设置multiDexEnabled true

compile fileTree(dir: 'libs', include: ['*.jar'])

然后再试一次。希望它有所帮助。