Reputation: 7936
I'm trying to get the iOS Bundle ID, from a project that my mate of work, let in our SVN repository.
I'm not a iOS developer so I don't know where to find it (if is it possible).
And until the answer of: Ask him, just say, I can't do it. He has gone from the job.
So, the question will be:
In which file I can find the iOS Bundle ID?
Upvotes: 1
Views: 955
Reputation: 2207
Click projects
Targets >General > Bundle Identifier
Or check Info.plist
let bundleID = NSBundle.mainBundle().bundleIdentifier
Upvotes: 1
Reputation: 358
The Bundle ID for an Xcode project is located in the Info.plist
file witch can be found at [Your-Project-Name]/Info.plist
Upvotes: 1