Android Studio에서 finished with non-zero exit value 2 오류가 날 경우, 라이브러리 중복 확인과 함께 아래 링크 내용을 확인 하면 된다.


http://stackoverflow.com/questions/28640314/android-studio-fails-to-debug-with-error-org-gradle-process-internal-execexcepti?answertab=oldest#tab-top



해결법

app 레벨에 있는 build.gradle에서 아래와 같이 입력

defaultConfig {
    multiDexEnabled true
}


+ Recent posts