Solution: react-navtie Unable to load script from assets index.android.bundle error on window(리액트 네이티브 실행 에러)
현재 윈도우에서 실제 디바이스를 이용하면 리액트 네이티브가 기본 예제도 안돌아간다.
Now, if you use a real device, even an official basic example from react-native is not working on Windows
실행시키면 Metro bundler가 제대로 동작하지 않으면서 이렇게 에러가 뜬다.
whenever I run it, it pops up this error with malfunctioning Metro Bundler.
찾아보니 리액트 네이티브 0.56 버전 이후가 윈도우에서 다 문제였다.
After I checked react-native repository, it said it is 0.56 version problem on Windows.
그래서 아래 명령어로 0.55.4 버전으로 프로젝트를 새로 만든 뒤
So, I used the command below to make a new project with 0.55.4
$ react-native init myApp --version 0.55.4
또 assets폴더가 자동으로 생성되지 않으므로 프로젝트 내에 assets 폴더를 만들어줘야한다.
And you need to make assets folder into your project because the assets folder is not created automatically.
$ mkdir android/app/src/main/assets
$ 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
그리고 이제 프로젝트를 실행시키면 된다.
And start your project.
$ react-native run-android
Reference
0 comments