반응형
React-Native 안드로이드 아래의 컴파일 오류 시 처리 방법입니다.
[오류]
Execution failed for task ':app:mergeDexDebug'.
> A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade
> com.android.builder.dexing.DexArchiveMergerException: Error while merging dex archives:
[해결방법]
<React-Native Project Folder>/android/app/build.gradle 에 아래의 내용을 추가 후 컴파일 하세요.
android {
...
defaultConfig {
...
multiDexEnabled true
}
...
}
반응형
'React-Native' 카테고리의 다른 글
React-Native 0.62.2에서 iOS 14에 이미지 표시 안되는 현상 해결 방법 (0) | 2021.03.29 |
---|---|
React-Native iOS 개발을 위한 VMWare Play 설정 (0) | 2021.03.28 |
React-Native error: package android.support.annotation does not exist (0) | 2021.03.28 |
React-Native : 애드몹(AdMob) iOS 14 적용하기 (1) | 2021.03.27 |
React-Native iOS 앱 심사 반려(구글 맵 관련) (0) | 2021.02.26 |
댓글