2017년 11월 7일 화요일

[Solved] Error:Execution failed for task Unable to merge dex .에러 대처법


안드로이드 스튜디오 에서 다음과 같은 에러 발생시
안드로이드 스튜디오에서는 알수 없는 에러가 발생 할때가 많다.
그래서 여기 하나 소개 한다.

[대처법]

Error:Execution failed for task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug'. > com.android.builder.dexing.DexArchiveMergerException: Unable to merge dex

그레들에 다음 라인을 추가 하면 에러가 해결된다.
your gradle add this line

android {
    defaultConfig {
        multiDexEnabled true    }
}

finally Solved
해결










댓글 1개:

익명 :

저거해도 안돼요...ㅠ