React Native

[react-native] Error : Unable to load script. Make sure youre dither running a Metro server... index.android.bundle is packaged correctly for release

projin 2020. 8. 10. 11:23

 

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