1

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?

Shudy
  • 7,806
  • 19
  • 63
  • 98

2 Answers2

1

The Bundle ID for an Xcode project is located in the Info.plist file witch can be found at [Your-Project-Name]/Info.plist

Dolan
  • 313
  • 1
  • 4
  • 14
1

Click projects

Targets >General > Bundle Identifier

Or check Info.plist

let bundleID = NSBundle.mainBundle().bundleIdentifier

reference link

Community
  • 1
  • 1
Lalit kumar
  • 1,797
  • 1
  • 8
  • 14