본문 바로가기
Dev Error

[React Native Error] Unable to load script. Make sure you're either running a Metro server (run 'react-native start') or that your bundle 'index.android.bundle' is packaged correctly for release.

by 개발이 체질인 나그네 2023. 4. 29.
반응형

 

Unable to load script. Make sure you're either running a Metro server (run 'react-native start') or that your bundle 'index.android.bundle' is packaged correctly for release

 

안드로이드 애뮬레이터 빌드 도중, 위와 같은 애러가 발생했다.

 

해결 방안 :

1. android\app\src\main\assets\모든 파일삭제

+ assets폴더가 없다면 생성

2. 아래 명렁어 실행

react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle

3. android\app\src\main\assets\index.android.bundle 

위 폴더 위치의 파란색 글씨(index.android.bundle)가 생성되었으면 끝

반응형

댓글