Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is correct format of bundle identifier in iOS?

I have four bundle identifier

  1. com.company.appname
  2. com.appname
  3. appname
  4. com.company-name.app-name

Please help me to find out correct bundle identifier,
Please tell me which is correct.

like image 517
Krutarth Patel Avatar asked Mar 11 '15 06:03

Krutarth Patel


People also ask

What is bundle identifier in iOS?

Overview. The bundleIds resource represents the app's unique identifier that you can register, modify, and delete. You need a bundle ID before you can assign capabilities with the Bundle ID Capabilities resource or create a provisioning profile with the Profiles resource.

What should my bundle identifier be?

The ending should be some variant of your app's name for readability. (It can actually be whatever you want, as long as all of your apps have different ones.)


2 Answers

All the formats which you have mentioned are correct and can be used as bundle identifier. But the standard format followed is com.company.appname (reverse domain name).

like image 119
abintom Avatar answered Oct 17 '22 22:10

abintom


The First type is the correct one.It is a standard to use the reverse domain name as the bundle identifier along with app name. For example com.google.gmail,com.fb.messanger

like image 5
AGENT Avatar answered Oct 17 '22 22:10

AGENT