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 3 years have passed since last update.

Bitriseで「could not get icons for app」のエラーが出るときの解決法

Last updated at Posted at 2020-01-29

問題

BitriseにSwiftUIのプロジェクトを新規追加しようとした時に、「could not get icons for app: /bitrise/src/{ProjectName}/{ProjectName}.xcodeproj, error: not found app icon set (AppIcon) on paths: [{18BEF98823E125EA005ED009 Preview Assets.xcassets} {18BEF98523E125EA005ED009 Assets.xcassets}]」というエラーが発生する。

原因

SwiftUIのプロジェクトでは、プロジェクトディレクトリの中にPreviewContent/Preview Assets.xcassetsというアセットディレクトリが存在するが、この中身が空のためにBitriseのプロジェクトスキャンのパースでエラーを吐いているようす。(Bitrise内部挙動はわからないのでエラー内容からの推測です)

解決法

  1. Assets.xcassetsに空のAppIconのアセットを追加する。
  2. 名前が本番用のAppIconとコンフリクトしてテストエラーになるのを避けるために、名前を「AppIcon」以外にする。(自分はPreviewAppIconとかにしました。)

ディレクトリごと削除しても問題なく動くが、Preview用のアセットを使いたくなったらまた問題は起こるので、空アセット追加の方が良さそうに見える。

その他

SwiftUI利用時ではなくても、何かのミスでアプリアイコンのアセットを削除してしまった場合はこのエラーが発生しそうなので、追加してあげれば解決します。

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?