documentation
  • Introduction
    • Overview
      • Scandium Features & Concepts
  • Setting up your account
  • Create a test case
  • Supported Actions
  • File uploads
  • Assertions
  • Groups
  • Step settings
  • Variables
  • System Functions
  • Email Testing
  • Data-driven Testing
  • Test Suites
  • Results
    • Test results
    • Suite results
  • Why did my test fail?
  • API Testing
    • Getting Started
    • API Suites
    • Scheduling and Monitoring
  • Mobile Application Testing
    • Create a mobile project
    • Uploading Apps
      • Android
      • iOS
    • Testing mobile app
  • Common Testing Scenarios
  • Test Management
    • Tests and Folders
    • Tags
  • INTEGRATIONS
    • Continuous Integration (CI/CD)
    • Azure Devops
    • Bamboo CI
    • Bitbucket Pipelines
    • Circle CI
    • Github Actions
  • GitLab CI
  • Jenkins
  • Travis CI
Powered by GitBook
On this page
  • Finding your .app file
  • Using Xcode
  • Using Xcode Command Line Tools
  • Compress your app file
  • Troubleshooting
  1. Mobile Application Testing
  2. Uploading Apps

iOS

To get started, Scandium requires a .zip or .tar.gz file containing your compressed .app bundle.

PreviousAndroidNextTesting mobile app

Last updated 7 months ago

Scandium currently only supports iOS Simulator builds (.app). A simulator build can be run in the iOS Simulator with Xcode. AppStore distribution device builds (.ipa) are not currently supported.

Finding your .app file

Using Xcode

The easiest way to get the iOS Simulator build is to run and build your application in Xcode while targeting an iOS Simulator

Once the build is complete and the app is running in the simulator, you can locate the .app file by navigating to Product -> Show Build Folder in Finder -> Products/Debug-iphonesimulator

Using Xcode Command Line Tools

You can also generate the iOS Simulator build of your app by building it directly via the command line using xcodebuild.

With .xcodeproj

xcodebuild -project '{project_name}.xcodeproj' \
 -scheme '{scheme_name}' \
 -sdk iphonesimulator \
 -configuration Debug

With .xcworkspace

xcodebuild -workspace '{your_workspace_name}.xcworkspace' \
 -scheme '{scheme_name}' \ 
 -sdk iphonesimulator \
 -configuration Debug

The app file can then be found under

build/Debug-iphonesimulator/

Compress your app file

Once you have located your .app file, Scandium requires it to be in a compressed zip or tar.gz file e.g.

zip -r {app name}.zip {app name}.app

Troubleshooting

If you are having trouble running your uploaded iOS app on Scandium, we recommend trying to run the same app on a simulator provided by Apple in Xcode.

Xcode - show build folder in finder