Symbolication/Deobfsucation
Explained here is how to symbolicate your crashes to get more details from the stack trace for your Flutter apps.
Deobfuscating Dart Crashes
Uploading Symbol Files with Luciq CLI
1
dart pub global activate luciq_cli# For macOS/Linux
export PATH="$PATH":"$HOME/.pub-cache/bin"
# For Windows
set PATH=%PATH%;%LOCALAPPDATA%\Pub\Cache\bin2
export LUCIQ_APP_TOKEN=your_app_token_here
export LUCIQ_API_KEY=your_api_key_hereLUCIQ_APP_TOKEN=your_app_token_here
LUCIQ_API_KEY=your_api_key_here3
# Upload all symbols (searches current directory recursively)
luciq upload-symbols
# Upload from a specific directory
luciq upload-symbols --symbols-path /path/to/symbols
# Upload with explicit credentials
luciq upload-symbols --token YOUR_APP_TOKEN --api_key YOUR_API_KEY
# Upload with native sourcemaps (includes Android mapping.txt and iOS DWARF files)
luciq upload-symbols --enable-native-sourcemaps
# Upload with verbose logging to see detailed progress
luciq upload-symbols --verbose-logsHow Symbol File Upload Works
Manual Upload Using API
1
2
3
1
2
3
Native Crash Symbolication
1
2
Last updated
