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 파일 이름은 중국어를 포함하고 중국어가 아닌 문자로 수정됩니다.
계속 기다리다
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
react-native 캐시 데이터
1. 캐시 시간 설정
2. 캐시 확보 시간
3. 인터페이스 호출 여부
되돌아오는 nowTime의 브리 값에 따라true는 인터페이스를 다시 조정할 수 있으며false는 인터페이스를 조정할 필요가 없습니다...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.
project.ext.react = [
entryFile: "index.js",
enableHermes: false, // clean and rebuild if changing
bundleInDebug:true, // debug index.android.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
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
react-native 캐시 데이터1. 캐시 시간 설정 2. 캐시 확보 시간 3. 인터페이스 호출 여부 되돌아오는 nowTime의 브리 값에 따라true는 인터페이스를 다시 조정할 수 있으며false는 인터페이스를 조정할 필요가 없습니다...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.