Android Studio-Java.exe is finished with non-zero exit value 2

前端 未结 7 891
故里飘歌
故里飘歌 2021-01-13 05:07

When I try to Run my app, I am getting this error:-

Error:Execution failed for task \':app:dexDebug\'.
> com.android.ide.common.process.ProcessException:          


        
相关标签:
7条回答
  • 2021-01-13 05:48

    Try

    Build > Clean project

    If it not working try to remove

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

    then add lib separeately e.g.

    compile files('libs/jncryptor-1.1.0.jar')
    
    0 讨论(0)
提交回复
热议问题