「Ios/swift/実機確認」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→実機検証) |
(→The run destination is not valid for Running the scheme) |
||
行12: | 行12: | ||
==The run destination is not valid for Running the scheme == | ==The run destination is not valid for Running the scheme == | ||
xcodeのgeneralから端末をregisterするボタンを押す | xcodeのgeneralから端末をregisterするボタンを押す | ||
+ | |||
+ | 開発端末のxcodeの中身を確認する | ||
+ | $ cd ~/Library/Developer/Xcode/iOS\ DeviceSupport/ | ||
+ | $ ls | ||
+ | 10.0.2 (14A456) 10.3.1 (14E304) | ||
+ | もしくは | ||
+ | $ cd /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport | ||
+ | $ ls | ||
+ | 10.0 10.1 10.2 | ||
+ | #https://github.com/iGhibli/iOS-DeviceSupport/tree/master/DeviceSupport から | ||
+ | #上記どちか存在するDIRに11.4.1をいれてビルド、もしくはxcode再起動すれば良い。 | ||
+ | #11.4 (15F79) と 11.4 を入れたら動いた。 | ||
+ | |||
+ | 参考:https://qiita.com/_CHUBURA/items/ffd280e50ed623989045 |
2018年10月1日 (月) 15:45時点における版
実機検証
- 実機をUSBで接続
- xcodeの上部にあるiPhone6などと書かれている部分を自分のDeviceに選択しなおす。
- ▶︎を押してビルド実行
以下メッセージが出た場合
Verify the Developer App certificate for your account is
- 実機について以下確認
- 設定/一般/プロファイルとデバイス管理/デベロッパAPP/信頼するに変更
The run destination is not valid for Running the scheme
xcodeのgeneralから端末をregisterするボタンを押す
開発端末のxcodeの中身を確認する
$ cd ~/Library/Developer/Xcode/iOS\ DeviceSupport/ $ ls 10.0.2 (14A456) 10.3.1 (14E304)
もしくは
$ cd /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport $ ls 10.0 10.1 10.2
- https://github.com/iGhibli/iOS-DeviceSupport/tree/master/DeviceSupport から
- 上記どちか存在するDIRに11.4.1をいれてビルド、もしくはxcode再起動すれば良い。
- 11.4 (15F79) と 11.4 を入れたら動いた。