2015-07-11 81 views
0

喜在編譯我的項目我收到錯誤消息像這樣的java.exe與非零退出值完成gradle這個生成錯誤非零退出值3

enter image description here

預先感謝您

apply plugin: 'com.android.application' 

android { 
compileSdkVersion 21 
buildToolsVersion "22.0.1" 

defaultConfig { 
    applicationId "com.sentientit.theiWedplanner" 
    minSdkVersion 9 
    targetSdkVersion 21 
    versionCode 13 
    versionName "11.2" 
    multiDexEnabled true 

} 

buildTypes { 
    release { 
     minifyEnabled false 
     proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 
    } 
    debug { 
     debuggable true 
     minifyEnabled false 
     proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 

    } 
} 
} 

dependencies { 
compile 'com.android.support:support-v4:22.2.0' 
compile 'joda-time:joda-time:2.4' 
compile files('libs/bugsense-3.6.1.jar') 
compile files('libs/core.jar') 

compile files('libs/MtUtils.jar') 
compile files('libs/socialauth-android-3.2.jar') 
compile files('libs/universal-image-loader-1.6.1-with-src.jar') 
compile files('libs/zxingjar-1.1.jar') 
compile 'com.google.android.gms:play-services:7.5.0' 
compile files('libs/ksoap2.jar') 
compile 'com.android.support:multidex:1.0.1' 
compile files('libs/twitter4j.jar') 
} 

回答

0

我也在更新到最新的Android Studio後出現此錯誤。我通過在defaultConfig中的build.gradle中添加multiDexEnabled true來修復它。

例子:

defaultConfig { 
     applicationId "com.stackoverflow.ranjith.androidprojdel" 
     minSdkVersion 15 
     targetSdkVersion 22 
     versionCode 1 
     versionName "1.0" 
     multiDexEnabled true 
    } 
+0

已經我已經啓用了它 –

+0

發表您的build.gradle在question..Its很難不看指向錯誤。 – Psypher

+0

我已發佈它對其進行閱讀 –

相關問題