.app files from Xcode for testing on Revyl.
Quick Steps
- Open your project in Xcode
- Select any iOS Simulator as destination
- Product → Build (⌘+B)
- Product → Show Build Folder in Finder
- Navigate to
Debug-iphonesimulator/YourApp.app
Building Your App
Select Simulator
In Xcode toolbar:- Choose your app scheme
- Select any iOS Simulator (e.g., iPhone 15 Pro)
Build
- Clean: Product → Clean Build Folder (⌘+Shift+K)
- Build: Product → Build (⌘+B)
- Wait for success
Locate Build
Product → Show Build Folder in Finder Navigate to:Debug-iphonesimulator, NOT Debug-iphoneos.
Test Before Upload
- Open iOS Simulator
- Drag
YourApp.apponto simulator window - Launch from home screen
- Verify it works
Command Line
For CI/CD pipelines:Troubleshooting
Signing Errors
Simulator builds don’t need code signing:- Set Code Signing Identity to “Don’t Code Sign”
- Or enable Automatically manage signing
Architecture Issues
Ensure compatibility with Apple Silicon and Intel:- Select your target → Build Settings
- Find Architectures
- Verify:
Standard Architectures (arm64) - $(ARCHS_STANDARD)
arm64 and x86_64 automatically.
App Won’t Install
- Drag the
.appfile directly (not a folder) - Restart iOS Simulator
- Check simulator iOS version matches deployment target
Build Folder Missing
Manual path:Next Steps
Upload your build to Revyl:- Go to Builds page
- Click Create Build
- Select iOS platform
- Upload your
.appfile
Need help? Contact [email protected]