如何通过终端启动.app?

问题描述 投票:0回答:2

为了使用终端安装 .app 文件,我按照此处提供的步骤进行操作 https://stackoverflow.com/a/27313079 。 它工作正常,但当我尝试启动时,应用程序崩溃了。我遵循了这里提到的一些建议无法附加到进程 ID Xcode,但到目前为止对我来说没有任何效果。感谢您的帮助。

xcode xcode6 ios-simulator .app
2个回答
0
投票

好吧,前往终端,(假设您安装了 Xcode 命令行工具)

但首先,启动 iPhone 模拟器。

然后在终端中输入

xcrun simctl install booted /foo/bar.app
, 其中
/foo/bar.app
当然是您的应用程序。 然后等待几秒钟。

完成后,转到应用程序的

Info.plist
文件并找到显示
bundle identifier
的行。它旁边是包标识符,应如下所示:
com.foo.bar
或类似内容。

然后再次转到终端并输入

xcrun simctl launch booted com.foo.bar
,其中
com.foo.bar
是您的应用程序标识符。


0
投票

xcrun devicectl 设备进程启动 --device 0000xxxx-xxxxxxxxxxxxxxx ai.yourapp.id --verbose

© www.soinside.com 2019 - 2024. All rights reserved.