RORK LABJP
DEADLINE — From August 31, 2026, Google Play requires target API level 36 (Android 16) or higher for both new apps and updates to existing ones. Twelve days leftEXTENSION — If you cannot make the date, the deadline extension form in Play Console buys you until November 1. The extension is not automatic, so the request itself has to land before August 31TARGET SDK — Even for the Expo and React Native apps Rork produces, the targetSdkVersion is yours to verify. A template pinned to an older SDK will not meet the requirement on its ownRORK MAX — Where the original Rork emits React Native and Expo, Rork Max generates native Swift, covering iPhone, iPad, Apple Watch, Apple TV, Vision Pro, and iMessageFUNDING — A $15M seed round led by Left Lane Capital was announced on April 9, alongside the acquisition of app builder Paperline to bring in engineering talentiOS — Developer beta 6 of iOS 27 arrived on August 17 with the autumn release drawing closer. If you ship native Swift output, the new OS timeline feeds straight into your release planDEADLINE — From August 31, 2026, Google Play requires target API level 36 (Android 16) or higher for both new apps and updates to existing ones. Twelve days leftEXTENSION — If you cannot make the date, the deadline extension form in Play Console buys you until November 1. The extension is not automatic, so the request itself has to land before August 31TARGET SDK — Even for the Expo and React Native apps Rork produces, the targetSdkVersion is yours to verify. A template pinned to an older SDK will not meet the requirement on its ownRORK MAX — Where the original Rork emits React Native and Expo, Rork Max generates native Swift, covering iPhone, iPad, Apple Watch, Apple TV, Vision Pro, and iMessageFUNDING — A $15M seed round led by Left Lane Capital was announced on April 9, alongside the acquisition of app builder Paperline to bring in engineering talentiOS — Developer beta 6 of iOS 27 arrived on August 17 with the autumn release drawing closer. If you ship native Swift output, the new OS timeline feeds straight into your release plan
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 Distribution3React Native227operations7

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 SPM in Rork Max Apps
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-27
Catch Real-Device Bugs Before You Ship: A Pre-Submission Checklist for Rork Share Links
Rork's editor preview runs in an ideal environment, so it hides bugs that only appear on real hardware. Here are the seven device differences to clear before you hand out a share link, in the order to check them, with the code to set up first.
📚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 →