tns build ios
Description
Builds the project for iOS and produces an APP
or
IPA
that you can manually deploy in the iOS
Simulator or on a device.
WARNING: You can run this command only on macOS systems. To view
the complete help for this command, run
$ tns help build ios
IMPORTANT: Before building for iOS device, verify that you have configured a valid pair of certificate and provisioning profile on your macOS system. For more information, see the Code Signing and Maintain Signing Assets sections from the Apple Developer documentation.
Commands
Usage | Synopsis |
---|---|
General |
$ tns build ios [--for-device] [--release] [--copy-to
<File Path>] [--provision [<UUID/name>]]
[--env.*]]
|
Options
-
--release
- If set, produces a release build. Otherwise, produces a debug build. -
--for-device
- If set, produces an application package that you can deploy on device. Otherwise, produces a build that you can run only in the native iOS Simulator. -
--i-cloud-container-environment
- If set, adds the passediCloudContainerEnvironment
when exporting an application package with the--for-device
option. -
--copy-to
- Specifies the file path where the built.ipa
will be copied. If it points to a non-existent directory path, it will be created. If the specified value is existing directory, the original file name will be used. -
--team-id
- If used without parameter, lists all team names and ids. If used with team name or id, it will switch to automatic signing mode and configure the .xcodeproj file of your app. In this case .xcconfig should not contain any provisioning/team id flags. This team id will be further used for codesigning the app. For Xcode 9.0+, xcodebuild will be allowed to update and modify automatically managed provisioning profiles. -
--provision
- If used without parameter, lists all eligible provisioning profiles. If used with UUID or name of your provisioning profile, it will switch to manual signing mode and configure the .xcodeproj file of your app. In this case xcconfig should not contain any provisioning/team id flags. This provisioning profile will be further used for codesigning the app. -
--env.*
- Specifies additional flags that the bundler may process. Can be passed multiple times. Supported additional flags:-
--env.aot
- creates Ahead-Of-Time build (Angular only). -
--env.uglify
- provides basic obfuscation and smaller app size. -
--env.report
- creates a Webpack report inside areport
folder in the root folder. -
--env.sourceMap
- creates inline source maps. -
--env.hiddenSourceMap
- creates sources maps in the root folder (useful for Crashlytics usage with bundled app in release).
-
-
--force
- If set, skips the application compatibility checks and forcesnpm i
to ensure all dependencies are installed. Otherwise, the command will check the application compatibility with the current CLI version and could fail requiringtns migrate
. -
--path <Directory>
- Specifies the directory that contains the project. If not set, the project is searched for in the current directory and all directories above it.
Command Limitations
-
You can run the
$ tns build ios
command only on macOS systems.
Related Commands
Command | Description |
---|---|
appstore | Lists applications registered in iTunes Connect. |
appstore upload | Uploads project to iTunes Connect. |
build android | Builds the project for Android and produces an APK that you can manually deploy on device or in the native emulator. |
build | Builds the project for the selected target platform and produces an application package that you can manually deploy on device or in the native emulator. |
debug android | Debugs your project on a connected Android device or in a native emulator. |
debug ios | Debugs your project on a connected iOS device or in a native emulator. |
debug | Debugs your project on a connected device or in a native emulator. |
deploy | Builds and deploys the project to a connected physical or virtual device. |
run android | Runs your project on a connected Android device or in a native Android emulator, if configured. |
run ios | Runs your project on a connected iOS device or in the iOS Simulator, if configured. |
run | Runs your project on a connected device or in the native emulator for the selected platform. |
test init | Configures your project for unit testing with a selected framework. |
test android | Runs the tests in your project on Android devices or native emulators. |
test ios | Runs the tests in your project on iOS devices or the iOS Simulator. |