😇

Android Studioのpull downでiOSシュミレーターが選択できない?

2024/05/06に公開

これは何か?

副業でMac miniを買ってもらって貸し出されたのですが、Android Studioの仮想デバイスを選択するpull downで選ぶことができない😱

flutter doctorすると、設定の問題みたいだ。コマンドを実行するといつも解決はできるけど、今回はできなかった???

[他にも技術記事は見た]
https://zenn.dev/imasaka0909/articles/c25de921e17984

解決策

stack overflowを見ていたときに気になるコマンドを実行すると解決できた。
https://stackoverflow.com/questions/17980759/xcode-select-active-developer-directory-error

[これで解決]

sudo rm -rf /Library/Developer/CommandLineTools
xcode-select --install

実行するコマンドは、flutter doctorすると表示されるコマンドを実行する。
[これではない場合もある]

sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
sudo xcodebuild -runFirstLaunch

無事に解決をすることができた。誰かの参考になるかなと思い記録を残す目的で記事を書きました。

Discussion