반응형
react native android run 시,
발생하는 에러 정리 글입니다.
에러 로그는 다음과 같습니다.
> Task :app:mergeDexDebug FAILED
해결방법은 multi dex enable 하면 됩니다.
At Path android/app/build.gradle
defaultConfig {
multiDexEnabled true //Add this line
}
This works for me.
반응형
'Mobile 개발 > RN(React Native)' 카테고리의 다른 글
RN TroubleShooting: Use of undeclared identifier 'FIRApp', 'RNSplashScreen' (0) | 2020.12.15 |
---|---|
RN - stack 이동시 새로 고침(refresh) (2) | 2020.12.05 |
RN TroubleShooting: ./gradlew app:installDebug -PreactNativeDevServerPort=8081 (0) | 2020.11.05 |
RN TroubleShooting: react-native-vector-icons ios 적용 (0) | 2020.11.02 |
RN Troubleshooting: xcode device is not available please reconnect the device (0) | 2020.11.02 |