如何在 Xcode 中找到 iOS 应用程序的 APP_UUID?
iOS Simulator 将应用程序存储在 ~/Library/Application Support/iPhone Simulator/4.2/Applications/APP_UUID/ 中
,但是如何找到特定项目/目标的 APP_UUID?
iOS Simulator stores apps in ~/Library/Application Support/iPhone Simulator/4.2/Applications/APP_UUID/
But how do I find the APP_UUID for a specific Project/Target?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
转到
并输入内容
shell
。 ** 更新为 Xcode 8 **
Go to
and type
in a shell.
** Updated for Xcode 8 **
我发现的最简单的方法是在模拟器中运行应用程序并 NSLog 标准路径定位函数的结果,如下所示:
The easiest way I've found is to run the app in the simulator and NSLog the result of a standard path-locating function, like this one:
这就是您所需要的:
只需将
com.bundle.identifier
更改为您的应用程序包标识符Here is what you need:
just change
com.bundle.identifier
to your app bundle identifier不必记住这些命令,一种非常简单直接的方法就是:
top
(或任何活动管理器)您的应用程序存储的位置将在那里
Instead of having to remember these commands, a very simple and straightforward way is to simply:
top
(or any activity manager)The location where your app is stored will be there