Version: 2022.3
Language : English
Build an iOS application
App thinning

iOS Build Settings reference

Use the iOS Build settings to configure and build your application for iOS devices. The iOS Build settings are part of the Build Settings window.

To view the iOS Build settings, use the following steps:

  1. Select File > Build Settings.
  2. From the list of platforms in the Platform pane, select iOS. If iOS is unavailable, follow the steps on iOS environment setup.
  3. Select Switch Platform if the Build options aren’t available.

You can configure the following settings for your build:

Property Description
Run in Xcode Select the Xcode version to open your project with. You can choose the Latest version or select a specific version from the drop-down list.

If you have a specific Xcode version installed on your machine that doesn’t appear in this list, select Other to find the version in the Applications window that appears. If Unity can’t find an Xcode installation on your computer, select the Browse button that you can select to locate the Xcode installation directory on your computer, if it exists.

Note: This option is visible only when you run Unity on macOS.
Run in Xcode as Selects whether Xcode runs your Project as a Release or Debug build.
Release Builds an optimized version of your app.
Debug Builds a testing version of your app that contains additional code that helps with debugging.
Symlink Sources References Unity libraries instead of copying them into the Xcode project. This option reduces the Xcode project size and makes iteration times faster.

Note: This option is visible only when you run Unity on macOS.
Development BuildA development build includes debug symbols and enables the Profiler. More info
See in Glossary
Indicates whether to include scripting debug symbols and the ProfilerA window that helps you to optimize your game. It shows how much time is spent in the various areas of your game. For example, it can report the percentage of time spent rendering, animating, or in your game logic. More info
See in Glossary
in your build. Use this setting when you want to test your application. When you select this option, Unity sets the DEVELOPMENT_BUILD scripting define. Your build then includes preprocessor directives that set DEVELOPMENT_BUILD as a condition. For more information, refer to Platform dependent compilation.
Autoconnect Profiler Automatically connects the Profiler to the build. For more information, refer to Profiler.

Note: This property is visible only when Development Build is enabled.
Deep Profiling Allow the Profiler to process all your script code and record every function call, returning detailed profiling data. For more information, refer to Deep Profiling This option might slow down script execution.

Note: This property is visible only when Development Build is enabled.
Script Debugging Attach script debuggers to the Player remotely.

Note: This property is visible only when Development Build is enabled.
Wait For Managed Debugger Force the Player to wait for a debugger to be attached before it executes any script code.

Note: This property is visible only when Script Debugging is enabled.
CompressionA method of storing data that reduces the amount of storage space it requires. See Texture Compression, Animation Compression, Audio Compression, Build Compression.
See in Glossary
Method
Specifies the method Unity uses to compress the data in your Project when it builds the Player. This includes AssetsAny media or data that can be used in your game or project. An asset may come from a file created outside of Unity, such as a 3D Model, an audio file or an image. You can also create some asset types in Unity, such as an Animator Controller, an Audio Mixer or a Render Texture. More info
See in Glossary
, ScenesA Scene contains the environments and menus of your game. Think of each unique Scene file as a unique level. In each Scene, you place your environments, obstacles, and decorations, essentially designing and building your game in pieces. More info
See in Glossary
, Player settingsSettings that let you set various player-specific options for the final game built by Unity. More info
See in Glossary
, and GI data.
Default The default compression is None.
LZ4 A fast compression format that’s useful for development builds. LZ4 compression can significantly improve the loading time of your application. For more information, refer to BuildOptions.CompressWithLz4.
LZ4HC A high compression variant of LZ4 that’s slower to build but produces better results for release builds. LZ4HC compression can significantly improve the loading time of your application. For more information, refer to BuildOptions.CompressWithLz4HC.
Build an iOS application
App thinning