dhrm
dhrm

Reputation: 14944

Bundle ID and SKU number

I'm adding an iOS App to iTunes Connect, but are confused regarding the two values Bundle ID and SKU Number which I have to chose for my App.

  1. When I create a new iOS project in Xcode, lets say "MyProject", it's iOS Application Identifier would be com.mycompany.MyProject. Should the iOS Application Identifier be all lower case or what are the "guidelines"? E.g. com.MyCompany.MyApplication, com.mycompany.MyApplication or com.mycompany.myapplication? What are the guidelines regarding this?
  2. Should this iOS Application ID in Xcode be equal to the Bundle ID in iTunes Connect and iOS Provisioning Portal?
  3. Could someone give me an example of, what the SKU Number could look like?

Upvotes: 25

Views: 55405

Answers (1)

Eugene
Eugene

Reputation: 10045

SKU number is anything you'd like, for instance if your app name is "MyApp" you can use SKU "myAppV1" or anything like that. So any value is acceptable.

For App ID you need to create an App ID in the ios dev center and choose it from the drop list of iTunesConnect. Then create an AppStore provisioning profile, copy its bundle id text and replace the one in your target's info pane under the Bundle ID section. This one is case insensitive, so no problem using com.MyCompany.MyApplication.

Upvotes: 26

Related Questions