Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

uuid

xcode

ios

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?

like image 676
Andrea Avatar asked Jul 28 '11 14:07

Andrea


People also ask

What is the bundle identifier Xcode?

When you create your Xcode project from a template, the bundle ID ( CFBundleIdentifier ), which uniquely identifies your app throughout the system, defaults to the organization ID appended to the app name that you enter in reverse-DNS format—for example, the bundle ID becomes com. example. mycompany. HelloWorld .

Is iOS UUID unique?

Your UDID is a unique identifier that Apple uses to associate a device to an iOS developer account.


1 Answers

Go to

~/Library/Developer/CoreSimulator/Devices/ 

and type

find . -iname "*.app"

in a shell.

** Updated for Xcode 8 **

like image 52
Antzi Avatar answered Nov 15 '22 07:11

Antzi