1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Flutter】iOSシミュレータ起動時に以下のエラーが出た時の対処 xcodebuild: error: Unable to find a destination matching the provided destination specifier

Posted at

iPhoneのsimulatorを起動した後、

flutter run

を叩いてiPhoneシミュレータでFlutterのデバッグビルドを動かそうとした時、以下のエラーに遭遇し、シミュレータでのアプリ起動に失敗しました。

DVTCoreDeviceEnabledState: DVTCoreDeviceEnabledState_Disabled set via user default (DVTEnableCoreDevice=disabled)
xcodebuild: error: Unable to find a destination matching the provided destination specifier:

エラーの原因は、XCodeプロジェクトでBuild ConfigurationがDebugになっていないことでした。

XCodeプロジェクトのRunner.xcworkspaceを開き、XCode画面上部の「Runner」→「Edit Scheme...」→「Run」タブ と進みます。Infoタブの最上部に「Build Configuration」があるので、「Debug」以外になっていたら「Debug」に戻します。
image.png

自分はこれで動くようになりました。

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?