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?

UnityでiOSビルド時に.xcworkspaceが出来なかったとき、どうしたらいい?

Posted at

UnityでiOSビルド時に.xcworkspaceが出来なかったときは、
以下のようにしたらいい。

cocoa pad インストール

まず、cocoa pad をインストールしてない人は、インストール

brew install cocoapods

pod がどこにあるか確認

which pod

/usr/local/bin/pod などにある場合はOK。

再初期化

プロジェクトのルートで改めて

pod init

を実行.

※プロジェクトのルートとは
しあなたのフォルダ構成がこんな感じなら:

MyApp/
├── MyApp.xcodeproj
├── AppDelegate.swift
├── ViewController.swift
└── ...

この場合の「プロジェクトのルート」は MyApp/ フォルダです。

最後に

pod install

これで xworkspaceができます。

以上

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?