react-native 최초 설치 후 안드로이드 스튜디오로 실행할 경우 위와 같은 오류 발생할때
1. [패키지명]/android/app/src/main/assets 폴더가 있는지 확인하고 없으면 생성
2. [패키지명]/android 폴더에서 ./gradlew clean 실행
3. [패키지명] 폴더에서 아래 명령어 실행
react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res
4. react-native run-android
'React Native' 카테고리의 다른 글
RN 개발관련 링크정리입니다. (0) | 2020.08.14 |
---|---|
Animated: `useNativeDriver` was not specified. This is a required option and must be explicitly set to `true` or `false` (0) | 2020.08.11 |
React Native 개발 프로젝트 생성 (0) | 2020.05.02 |
Compatible side by side NDK version was not found. (0) | 2020.04.25 |
React Native 개발환경 설정 삽질하지 말고... (0) | 2020.04.25 |