0
0

xcodebuildでx86向けの.appファイルを作成する

Posted at

MaestroでUITestを行っている際に.appファイルを作成する必要があったためメモ

※MaestroがARM64のビルドに非対応で、x86ビルドを行った

xcodebuildを使って作成

xcodebuild \             
  -workspace WORKSPACE_NAME \
  -scheme SCHEME_NAME \
  -destination 'generic/platform=iOS Simulator' \
  -derivedDataPath ./build \
  clean build

build/Build/Products/Develop-iphonesimulator/(APP_NAME).appに.appファイルが作成される

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