【ReactNative】Could not find iPhone X simulatorエラーの解決
エラーについて
Found Xcode workspace sample.xcworkspace
Could not find iPhone X simulator
Error: Could not find iPhone X simulator
Found Xcode workspace sample.xcworkspace
Could not find iPhone X simulator
Error: Could not find iPhone X simulator
Xcode11でこの問題で少し詰まったので、メモ。
Simulatorアプリでいくらターゲットのsimulatorを追加しても
うまくいかなかったのですが、下記の方法で改善しました。
*ReactNative v0.59.8
◆対策
/node_modules/react-native/local-cli/runIOS/findMatchinSimuilator.jsの62行目あたり
if(simulator.availability !== '(available)' &&
simulator.isAvailable !== 'YES' ){
という部分の条件分岐を
if(simulator.availability !== '(available)' &&
simulator.isAvailable !== 'YES' &&
simulator.isAvailable !== true){ // <- この行
へ変更。
◆原因
xcode側の実装が変わっており、デバイス毎に以下のような
ステータスを持っているが、その中のisAvailableの変数が
String → Boolean に変わったようです。
{ state: 'Shutdown',
isAvailable: false,
name: 'iPhone X',
udid: 'F15B13D6-4E4C-4047-84DA-0361220016D5',
availabilityError: 'runtime profile not found' }
なのでbooleanでtrueの場合も真の処理を通してあげる修正を入れてあげると動作します。
Author And Source
この問題について(【ReactNative】Could not find iPhone X simulatorエラーの解決), 我々は、より多くの情報をここで見つけました https://qiita.com/ryooosk/items/d7e743fa3c1492e1efb4著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .