我想使用 shell 脚本而不是 Xcode 构建和启动我的 iOS 应用程序。我的问题类似于这个问题:How to launch an iOS app in the simulator without XCode rebuilding the app,这是 2012 年提出的。
它表示可以使用在项目目录中的 build 目录中创建的 IPA 文件。我在我的项目文件夹中找不到构建目录。另外,我想从脚本构建应用程序。
使用终端命令在模拟器上构建和运行应用程序的最新方法是什么?
编辑:
我从命令行构建了应用程序:
xcrun xcodebuild \
-scheme UITestingTutorial \
-project UITestingTutorial.xcodeproj \
-configuration Debug \
-destination 'platform=iOS Simulator,name=iPhone 11,OS=13.6' \
-derivedDataPath \
build
但是我现在如何启动它?