App Uploads
Before you can automate mobile tests in CI, you need a simulator build to test against.
What you need to upload
TesterArmy currently supports iOS Simulator builds in one of these formats:
.app.zip.app.tar.gz
Warning: Simulator builds only
Do not upload an
.ipa. That is a device build. TesterArmy needs a.appbundle built for iOS Simulator.
Build for iOS Simulator
If you already have an Xcode project, build a simulator app with xcodebuild:
The simulator app bundle usually ends up here:
If you are using Expo / React Native, the mobile example app is a good reference. Its build flow looks like this:
Zip the .app bundle
For dashboard uploads and direct API uploads, archive the .app bundle after the build completes:
You should end up with a file like MyApp.app.zip.
Upload via the dashboard
Go to your project and click the Mobile tab. Then click Browse Files and select the .app.zip or .app.tar.gz file you built.

Create your first mobile test
Before adding CI, create at least one mobile test in the dashboard:
- Upload your simulator build.
- Create a new test or open an existing one.
- In the test’s App Upload tab, select the uploaded app.
- Run the test manually and make sure it passes.

When writing prompts, guide the agent like you would guide a human user.
Weak prompt example: “Open settings”
Strong prompt example: “Tap the profile icon in the top right, open Settings, and verify the notifications toggle is visible”
Specific prompts produce more reliable tests and make CI failures easier to understand.
If you need to manage uploads programmatically outside GitHub Actions, see the API Reference tab.
Notes
- Use
removeAfterto auto-delete temporary uploads created during CI. - Each project has a 2 GB storage limit.
- Our GitHub Action can upload the
.appdirectory directly, so you do not need to zip it when running through GitHub Actions.

