RORK LABJP
MAX — Rork Max generates native Swift apps for iPhone, iPad, Apple Watch, Apple TV, Vision Pro, and iMessageNATIVE — It unlocks native capabilities React Native cannot reach: AR/LiDAR, Metal 3D, widgets, Dynamic Island, Live Activities, Siri Intents, and HealthKitRN — Standard Rork builds cross-platform apps with React Native (Expo), a good fit when you want something working fastCHOICE — Pick React Native for speed, or Rork Max when you need Apple hardware and OS integrationPRICE — Rork is free to start with paid plans from $25/mo; Rork Max is $200/moFLOW — Describe the app you want in plain language and Rork produces working code you can ship to the storesMAX — Rork Max generates native Swift apps for iPhone, iPad, Apple Watch, Apple TV, Vision Pro, and iMessageNATIVE — It unlocks native capabilities React Native cannot reach: AR/LiDAR, Metal 3D, widgets, Dynamic Island, Live Activities, Siri Intents, and HealthKitRN — Standard Rork builds cross-platform apps with React Native (Expo), a good fit when you want something working fastCHOICE — Pick React Native for speed, or Rork Max when you need Apple hardware and OS integrationPRICE — Rork is free to start with paid plans from $25/mo; Rork Max is $200/moFLOW — Describe the app you want in plain language and Rork produces working code you can ship to the stores
Articles/Dev Tools
Dev Tools/2026-06-18Advanced

Turning Rork App Crash Reports You Can Actually Read — Field Notes on dSYM Recovery, Context Logs, and Staged Distribution

You added Crashlytics, but the stack traces are unreadable. Field notes on restoring dSYM/mapping symbols, logging the context that led to a crash, and gating distribution with App Distribution and GitHub Actions.

Crashlytics12Firebase10dSYM3GitHub Actions5crash analysisApp DistributionReact Native162operations7

Premium Article

The week after I wired up Crashlytics, my first production crash arrived. I opened the console expecting answers and found a stack trace full of __hermes_internal and <unknown> — no way to tell which screen or which line had failed. The tool was working perfectly, yet the information it gave me was close to zero. This is the most dangerous state to be in: you think you have crash monitoring, but you are effectively blind.

Debug builds read fine; only release builds go dark. There is a clear reason for that. In this article I want to fix "unreadable crash reports," then go a step further so the report tells you what was happening just before the failure, and finally cover how to stop a bad build from spreading past your testers — all assuming an app generated with Rork.

Why release traces stop being readable

The cause is optimization. Release builds rename functions and variables to short symbols (minification), and on the native side symbol information is stripped out of the binary. Crashlytics only receives the optimized addresses, so it needs a separate map file to turn them back into human-readable names — a process called symbolication.

That map comes in three layers. The JavaScript layer uses the source map Metro emits; the iOS native layer uses the dSYM; the Android native layer and R8 obfuscation use a mapping file. Because Rork generates a React Native app, the Hermes engine adds its own source map into the mix. If any one of these is missing, that layer of the trace becomes <unknown>. Most "unreadable" crashes come down to one of these maps never being uploaded.

iOS: upload the dSYM without dropping it

An .ipa built with EAS contains the dSYM, but finishing the build does not send it to Crashlytics. You have to upload it explicitly. With Bitcode disabled (the current default), the reliable approach is to run upload-symbols after the build.

# upload-symbols ships with @react-native-firebase/crashlytics
SYMBOLS="node_modules/@react-native-firebase/crashlytics/ios/upload-symbols"
 
# Extract the dSYM from the EAS artifact and upload it
unzip -o build.ipa -d ./ipa_extracted
"$SYMBOLS" -gsp ./GoogleService-Info.plist -p ios \
  "$(find ./ipa_extracted -name '*.dSYM' -print -quit)"

If you use Hermes, the JS stack appears as Hermes bytecode addresses. Those need a source map combined with compose-source-maps, not a dSYM. The react-native-xcode.sh script emits main.jsbundle.map on release builds, so hand that to the Crashlytics source-map uploader. Forget this and you end up half-symbolicated: native reads fine, but the JS lines stay unknown. I lost half a day here the first time.

Thank you for reading this far.

Continue Reading

What follows includes implementation code, benchmarks, and practical content we hope you'll find useful. This site runs without ads — server and development costs are supported entirely by members like you. If it's been helpful, we'd be truly grateful for your support.

WHAT YOU'LL LEARN
Why release-build stack traces show up as <unknown>, and how to reliably upload dSYM and R8 mapping files
Attaching the story of what happened before a crash using custom keys, breadcrumbs, and non-fatal error records
A staged App Distribution × GitHub Actions pipeline gated on crash-free rate
Secure payment via Stripe · Cancel anytime

Unlock This Article

Get full access to the rest of this article. Buy once, read anytime. This site is ad-free — your support goes directly toward keeping it running.

or
Unlock all articles with Membership →
Share

Thank You for Reading

Rork Lab is ad-free, supported entirely by members like you. We publish practical guides daily with implementation code, benchmarks, and production-ready patterns. If you've found it useful, we'd love to have you on board.

  • Copy-paste ready implementation code
  • New advanced guides published daily
  • $5/mo or $10 for lifetime access
View Membership →

Related Articles

Dev Tools2026-05-16
Rork Max SwiftUI App Crash Logs Are Unreadable: The dSYM Upload Pitfall
Fix Unsymbolicated crash reports in Firebase Crashlytics for Rork Max SwiftUI apps. Learn the correct dSYM upload configuration with real examples from indie app development.
Dev Tools2026-05-16
Migrating Firebase CocoaPods to Swift Package Manager in Rork Max iOS Apps — Real Migration Log and 3 Pitfalls to Avoid Before October 2026
Firebase Apple SDK's CocoaPods distribution ends in October 2026. Here's a detailed migration log from moving 4 Rork Max iOS apps to Swift Package Manager — including dSYM failures, module errors, and the Dropbox conflict copy problem you'll definitely hit.
Dev Tools2026-06-13
Before Your Feature Flags Turn Into a Junkyard — Governing Naming, Staged Rollout, and Kill Switches Across Six Apps
Keep adding remote-config flags and within six months you have keys nobody remembers the meaning of. Here is a governance system — naming conventions, safe defaults, staged rollout, kill switches, and monthly cleanup — with the implementation from running six apps in parallel.
📚RECOMMENDED BOOKS
Build a Large Language Model (From Scratch)
Sebastian Raschka
LLM Dev
Prompt Engineering for LLMs
Berryman & Ziegler
Prompting
AI Engineering
Chip Huyen
AI Eng
* Contains affiliate links
See all →