Symbolication/Deobfuscation
Explained here is how to symbolicate your crashes to get more details from the stack trace for your React Native app.
iOS Crash Reporting
1
2
react-native bundle --platform ios \
--entry-file index.js \
--dev false \
--bundle-output ./ios/main.jsbundle \
--sourcemap-output ./ios-sourcemap.json &&
zip ./ios-sourcemap.zip ./ios-sourcemap.json3
Android Crash Reporting
1
2
react-native bundle --platform android \
--entry-file index.js \
--dev false \
--bundle-output ./android/main.jsbundle \
--sourcemap-output ./android-sourcemap.json &&
zip ./android-sourcemap.zip ./android-sourcemap.json3
npx luciq upload-sourcemaps \
--platform <ios|android> \
--file <path-to-sourcemap.json> \
--token YOUR_APP_TOKEN \
--name VERSION_NAME \
--code VERSION_CODEVariable
Platform
Description
Native SDKs (iOS and Android)
Last updated