How do I find the APP_UUID in Xcode for an iOS App?

ios, uuid, xcode

Solution

Go to

~/Library/Developer/CoreSimulator/Devices/ 

and type

find . -iname "*.app"

in a shell.

** Updated for Xcode 8 **

Problem

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?

Original source

Related problems