Home > Back-end >  What is the function of CFBundleIdentifier presence in plist?
What is the function of CFBundleIdentifier presence in plist?

Time:02-21

CFBundleIdentifier key/value doesn't appear in plist file when creating iOS project app using Xcode 13.

If I can remember correctly. prior to Xcode 13 the value was there.

Now, changing the PRODUCT_BUNDLE_IDENTIFIER in Build Settings tab would reflect on the bundle id field on the General Tab.

What was the use of CFBundleIdentifier in plist file?

CodePudding user response:

What was the use of CFBundleIdentifier in plist file?

The same as it is now! The only change is that you now construct the plist file at build time using build settings, rather than using a "model" plist file in the project.

  • Related