开发者

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

开发者 https://www.devze.com 2023-02-10 06:53 出处:网络
What is Bundle ID Suffix? Tutorials said to use Bundle ID from info.plist; I can notice Bundle identifier in info.plist,开发者_开发问答 its value is com.yourcompany.$(PRODUCT_NAME:rfc1034identifier)

What is Bundle ID Suffix? Tutorials said to use Bundle ID from info.plist; I can notice Bundle identifier in info.plist,开发者_开发问答 its value is com.yourcompany.$(PRODUCT_NAME:rfc1034identifier)

Should I type (com.yourcompany.$(PRODUCT_NAME:rfc1034identifier) as Bundle ID Suffix?


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

The Xcode project takes the default value for the Bundle ID as above. In that, the $(PRODUCT_NAME:rfc1034identifier) gives the product name.

Here, (PRODUCT_NAME:rfc1034identifier) is the Bundle ID Suffix.

Let us consider you have created a project named "HelloWorld". For this project, the $(PRODUCT_NAME:rfc1034identifier) returns the "HelloWorld" as the productName. This will be the Bundle ID Suffix.

0

精彩评论

暂无评论...
验证码 换一张
取 消