React-Native Exception

1227 단어 React-Native

React-Native Exception


unable to find utility “simctl”, not a developer tool or in PATH


react-native-ios를 실행할 때 나타납니다.해결: XCode 설정 > Preferences > Locations > Command line tools에서 설정 중 하나를 선택하고react-native run-ios를 다시 시작하면 됩니다.

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.


react-native run-android를 호출할 때 index를 알립니다.android.bundle 이 파일은 생성되지 않았습니다.
해결 방안1: app/build.gradle 파일에서 bundleInDebug=true 수정
project.ext.react = [
    entryFile: "index.js",
    enableHermes: false,  // clean and rebuild if changing
    bundleInDebug:true, // debug index.android.bundle
]

프로젝트 2 실행 명령 수동으로 bundle 파일 생성
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

react-native run-android 설치 오류 보고com을 실행합니다.android.ddmlib.InstallException: Unknown failure


해결: outputFileName에서 출력한 apk 파일 이름은 중국어를 포함하고 중국어가 아닌 문자로 수정됩니다.

계속 기다리다

좋은 웹페이지 즐겨찾기