Is Suffix Bundle ID the same as package ID in info.plist?

What is a packet identifier suffix? The tutorials say use the Bundle identifier from info.plist ; I can notice the Bundle ID in info.plist , its value is com.yourcompany.$(PRODUCT_NAME:rfc1034identifier)

Should I print (com.yourcompany.$(PRODUCT_NAME:rfc1034identifier) as the suffix of the package identifier?

+6
iphone submission
source share
1 answer

The Bundle ID is in the format com.yourcompany.$(PRODUCT_NAME:rfc1034identifier)

The Xcode project accepts the default value for the Bundle identifier, as described above. At the same time, $(PRODUCT_NAME:rfc1034identifier) gives the name of the product.

Here (PRODUCT_NAME:rfc1034identifier) is the package identifier suffix.

Let's consider that you created a project called "HelloWorld". For this project, $(PRODUCT_NAME:rfc1034identifier) returns "HelloWorld" as productName. This will be the packet identifier suffix.

+3
source share

All Articles