Package identifier for an individual program

I recently opened a $ 99 account as a separate iOS developer. I have another account as an iOS developer as a company. In the company account, I gave the package identifier as com.mycompanyname.appname, but I got confused that I had to give the package identifier for a separate program.

+4
source share
1 answer

The Bundle ID works the same regardless of which account the company is or not. Think about it in more detail:

com.myDevAccountName.myAppName

From Apple's documentation on package identifiers

The package identifier string must be a single type identifier (UTI) that contains only alphanumeric (AZ, az, 0-9), hyphen (-), and period (.) Characters. The string must be in reverse DNS format. For example, if your company’s domain is Ajax.com and you create an application called Hello, you can designate the string com.Ajax.Hello as the application bundle ID.

+4
source

All Articles