1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Xcodeで Signing Certificate なしでビルドできなくなった時の対処法

Posted at

背景

タイトルの通りでXcodeのバージョンアップの影響か、以前お試しで作成したアプリがビルドできなくなってしまったので対処法を探した結果を書く。Xcodeのバージョンは16。

このように、StatusにCannot create ~ というエラーが出るようになってしまった。
スクリーンショット 2024-10-20 10.44.11.png
Try Againを押してもだめ、チームを無しにしてもエラーは出続ける。
とりあえず、ローカルで動かすだけで公開する予定もないので、TeamはNoneでビルドできるようにすれば良かった。

対処法

Build Settings を選択し、検索にidentityと入力する。
すると、Signing 項目が出てくるので、Debug あるいは Release に Sign to Run Locally を選択する。

スクリーンショット 2024-10-20 11.02.49.png

そして、Any macOS SDK のところでコンテキストメニューを開き Other を選択する。ポップアップが出るが空欄にしてEnter。

スクリーンショット 2024-10-20 11.10.59.png

これでSigning & Capabilities に移動すると以下のようにエラーがなくなっており、ローカルビルドすることができた!

スクリーンショット 2024-10-20 11.12.11.png

参照URL
https://stackoverflow.com/questions/31039513/how-can-i-skip-code-signing-for-development-builds-in-xcode

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?