0
0

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.

実機ビルドエラー(DeviceSupportに対応iOSサポートファイルがない時)

Last updated at Posted at 2023-11-25

ipadへ実機ビルドの際に、つまずいた点を以下に記録。

実機ビルド先のios機器のバージョンが、xcodeでサポートしていなくてはならない。されていない時は実機ビルドの際に以下のエラーを吐く。
”Could not locate device support files.”

解決策は以下の通り
1. xcodeへiosサポートファイルをDL。

以下のURLへアクセスし、リモートリポジトリをクローン OR zipファイルでわかりやすいところにダウンロードする。
https://github.com/iGhibli/iOS-DeviceSupport/tree/master/DeviceSupport

2. DLしたサポートファイルをxcode内のSupportFile内に置く。

ターミナルでSupportFile内に置きたいファイルのディレクトリまでアクセス。

zsh
cd Desktop/SupportFile/15.6
//相対パス

次にXcodeのDeviceSupportにファイルを置く

zsh
mv 15.6 /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/

以上でXcodeが実機ビルド先のiosバージョンに対応することになる。

ちなみに絶対パスの記法は/PATH/PATH...のように、最初は/から始まる。
相対パスはPATH/PATHのようにPATH名から始まる。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?