Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bundle identifier for individual program

I have newly opened account of 99$ as individual iOS Developer. I have another account as iOS developer as a company. In company account i gave the bundle identifier as com.mycompanyname.appname but i am confused what should i give the bundle identifier for the individual program.

like image 843
Prerna chavan Avatar asked Aug 16 '12 04:08

Prerna chavan


People also ask

What should my bundle identifier be?

You can't delete bundle IDs that are being used by an app in App Store Connect“. The bundle ID string must contain only alphanumeric characters (A-Z, a-z, and 0-9), hyphens (-), and periods (.). The string should be in reverse-DNS format. Bundle IDs are case-sensitive.

What is the difference between bundle ID and app ID?

A bundle ID precisely identifies a single app. A bundle ID is used during the development process to provision devices and by the operating system when the app is distributed to customers. Whereas, An app ID is a two-part string used to identify one or more apps from a single development team.


1 Answers

Bundle ID's work the same regardless of wether the account is a company or not. Think of it more along the lines of:

com.myDevAccountName.myAppName

From Apple's documentation on Bundle ID's

The bundle ID string must be a uniform type identifier (UTI) that contains only alphanumeric (A-Z,a-z,0-9), hyphen (-), and period (.) characters. The string should be in reverse-DNS format. For example, if your company’s domain is Ajax.com and you create an app named Hello, you could assign the string com.Ajax.Hello as your app’s bundle ID.

like image 190
Mick MacCallum Avatar answered Oct 11 '22 08:10

Mick MacCallum