react-native: 특정 iOS 시뮬레이터에서 애플리케이션 실행
2794 단어 reactnativeios
# list all ios simulator
xcrun simctl list devices
# == Devices ==
# -- iOS 13.3 --
# iPhone 8 (F71514A5-9B42-4FFF-93B0-AAAA)
# iPhone 8 Plus (EE9676FF-8508-4B7C-B955-BBBB)
# -- iOS 13.6 --
# iPhone 8 (F71514A5-9B42-4FFF-93B0-XXXX)
# iPhone 8 Plus (EE9676FF-8508-4B7C-B955-YYYY)
장치 이름으로 실행
// package.json
{
"scripts": {
"start:iphone8": "react-native run-ios --simulator='iPhone 8'"
// will choose F71514A5-9B42-4FFF-93B0-AAAA
}
}
uuid로 실행
// package.json
{
"scripts": {
"start:iphone8Plus": "react-native run-ios --udid EE9676FF-8508-4B7C-B955-YYYY"
}
}
실제 장치에서 실행
npx react-native run-ios --configuration Release --device 'Boss's iPhone'
Reference
이 문제에 관하여(react-native: 특정 iOS 시뮬레이터에서 애플리케이션 실행), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/hieunh1801/react-native-run-application-on-specific-ios-simulator-fg4텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)