本文介绍了Android的工作室java.exe的非零退出值3完成的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我通过非零值1,2,以multidex问题有关,但现在我得到非零退出值3。

演播室消息:

 信息:摇篮:执行任务:[:emoticons_lib_proj:assembleDebug,:myProject_Developement:assembleDebug]
资料:2015年5月27日下午5时56分 - 编译用1个故障和警告0完成5米58S 77ms
错误:摇篮:执行失败的任务:myProject_Developement:dexDebug。

I hope someone might have faced the issue and fixed. kindly let me know where I am misleading,

解决方案

When your project contains large number of classes, android studio will throw non-zero exit value 3 error.

To solve the error, add this in build.gradle file and sync project with gradle.

dexOptions {
    javaMaxHeapSize "4g"
}

这篇关于Android的工作室java.exe的非零退出值3完成的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-14 18:58