For iOS, upload a .zip
or .tar.gz
file containing your compressed .app
bundle.
Show detailed iOS instructions
Your .app bundle must represent a simulator build of your app. After running the iOS simulator in Xcode, you can find your .app bundle by navigating to Product → Show Build Folder in Finder → Products/Debug-iphonesimulator.
Alternatively, you can run the following command in your project directory:
xcodebuild -project '<project_name>.xcodeproj' \
-scheme '<scheme_name>' \
-sdk iphonesimulator \
-configuration Debug
You can then zip the .app bundle found in build/
.
For Android, upload the .apk
containing your app.
Show detailed Android instructions
You can build your app via Android Studio, or by running the following command in your project directory:
./gradlew <assembleDebug | assembleRelease>
You can then find the .apk file in <project-name>/
.
For more information, please see our docs.