iOS
Building with Xcode command line tools
To build an app with Xcode command line tools xcrun xcodebuild should be used. Here is an example on how to build an app called MyApp
for iOS simulator target:
The .app file
will then be located build/
folder, which can be modified via the last parameter of the script.
Building with Fastlane
If you use fastlane for your automation pipelines the script should look the following way:
Building with Flutter
If you use Flutter to build your app you can create a debug build for simulators using the following command:
You can then find your app file in the build/ios/iphonesimulator/
directory.
Last updated