Reputation: 14944
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.
iTunes Connect
and iOS Provisioning Portal
?Upvotes: 25
Views: 55405
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