Build your app for the cloud
Last updated
Was this helpful?
Last updated
Was this helpful?
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.
If you use for your automation pipelines the script should look the following way:
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.
Android app binary requirements:
APK (AAB not supported)
Compatible with x86_64 architecture
Release and Debug builds both supported
Build your app using one of the commands below. Then find the appropriate APK file in the build/outputs/apk/
output directory.
If you use Flutter to build your app you can create a debug build using the following command:
You can then find the built apk in the build/app/outputs/
folder.