LoginSignup
0
0

More than 1 year has passed since last update.

flutter で iosの実機テストをするまで

Posted at

実機テストの手順

$ flutter clean

$ flutter build ios

次のコマンドで利用可能なデバイス一覧を確認する。

$ flutter devices

iPhone 13 Pro (mobile) • A15A87AB-EE19-477A-8823-1371F4FF61D4 • ios            • iOS 15.5 19F77
macOS (desktop)     • macos                     • darwin-x64     • macOS 12.4 21F79 darwin-x64
Chrome (web)        • chrome                    • web-javascript • Google Chrome 102.0.5005.115

ここで、A15A87AB-EE19-477A-8823-1371F4FF61D4が実機テスト可能なiphoneのデバイスIDとなる。

次のコマンドを実行することで実機にインストールされる。

# 'A'は device IDの頭文字
flutter install -d A  

参考文献

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0