Preparing an iOS Application for Deployment
Go Up to iOS Mobile Application Development
Before you build your application for distribution on iOS platforms, you must configure several project options of your application.
The properties that you configure are bundled with your application, usually in the form of .plist
files. You cannot modify these properties after you build and sign your application. Because these properties provide key information about your application, you should ensure that they contain the right values before you deploy your application, or you might have to rebuild your application in order to change the configured values.
To configure your iOS app, select Project > Options:
- On the Target field of the Project Options dialog box, select an iOS device target platform. As build configuration you may select All configurations.
- Notes: To submit your application to the App Store, you must configure these properties for the iOS Device - 64 bit target platform. See Deploying Your iOS Application for Submission to the App Store for more information.
- On the Application page, provide the icons and images to represent your application.
- On the Entitlement List page, assign the entitlements (system access rights) that you want for your application.
- On the Version Info page, define key-value pairs to include in the info.plist file of your application. For example:
CFBundleIdentifier
is a unique identifier for your application.- You should already have an App ID for your application. You should provide here the second part of your app ID, the bundle ID. For example:
com.mycompany.myapp
.
- You should already have an App ID for your application. You should provide here the second part of your app ID, the bundle ID. For example:
CFBundleVersion
is the version of your application. For example:1.0.0
.UIDeviceFamily
determines the type of iOS devices that your application supports:- iPhone
- iPad
- iPhone and iPad
If you need to customize your info.plist
file, see Customizing Your info.plist File.
See Also
- Configuring an Application Entry on iTunes Connect to Wait for Upload
- Deploying Your iOS Application for Ad hoc Distribution
- Deploying Your iOS Application for Submission to the App Store
- Submitting Your App to the Mac App Store
- Preparing a macOS Application for Deployment
- Deploying Multi-Device Applications