- Metadata - Searchable crash details including process name, crash time, and device information
- Crash information - System state data such as memory usage and device logs at the time of crash
- Dump section - Encoded crash state that requires symbolication to become readable
file:function:line_number
This transformation lets you identify the exact file, function, and line number where your app crashed.
Prerequisites
- An ACR file that your app generated when it crashed.
- Debug symbols or source maps (depending on code type).
Quick reference
Use this quick reference to choose the right symbolication approach for your situation:Retrieve and symbolicate an ACR
You can retrieve and symbolicate crash reports in the following ways:- From the device sidebar: Browse device files and symbolicate directly.
- From the command palette: Copy the ACR to your machine, then symbolicate.
From the device sidebar
-
In the Vega Studio sidebar, locate your connected device.
- Right-click on the device and select Show Device Files. Vega Studio displays the files on your device.
-
Navigate to the crash files for your app. The device stores ACR files under
/var/lib/data/ace/dropbox/vault/SYSTEM_TOMBSTONE/acr/. -
Right-click on the crash file you want to analyze.
- Select Symbolicate ACR. Vega Studio automatically symbolicates the crash report and displays the results.
From the command palette
-
Open the command palette in VS Code:
- For Mac:
Shift+Command ⌘+P - For Linux:
Ctrl+Shift+P
- For Mac:
- Enter Vega Device Management: Copy ACR from device.
- Select your target device from the list if you’ve connected multiple devices.
-
Enter the
package idorprocess id:- Package ID (recommended): Use this to retrieve all ACRs for your app. Find it in the
[package]section of your manifest.toml file (for example,com.example.myapp). - Process ID: Use this to retrieve ACRs for a specific app instance. Get it from the device’s running processes (for example,
12345).
- Package ID (recommended): Use this to retrieve all ACRs for your app. Find it in the
-
If the system finds multiple ACRs, select which to download:
- Select All to download all available ACRs.
- Select latest to download only the newest ACR.
- Save the ACR to your preferred folder.
- Open the command palette again and enter Vega Device Management: Symbolicate ACR.
- Select your ACR file.
Select a symbolication option
After you start symbolication (from either method), Vega Studio prompts you to select a symbolication option:- Automatic: Vega Studio automatically locates all required files and symbols.
- Manual: You specify symbol locations manually.
Automatic symbolication
Vega Studio collects all required configuration parameters without your input. When finished, Vega Studio displays a symbolicated call stack in the terminal. For native code, Vega Studio opens a GNU Debugger (GDB) session for interactive debugging.- Wait for Vega Studio to collect parameters.
- If prompted for any missing parameters: a. Read the request carefully. b. Enter the requested information. c. Choose Continue. For example, during automatic native symbolication, if no device connects, Vega Studio prompts you to provide a debug rootfs.
-
View results:
- Check the symbolicated call stack in the terminal.
- For native code, Vega Studio opens a GDB debugging session.
-
View the ACR summary:
Vega Studio generates and opens an ACR summary automatically:
- For native code: After you close the GDB debugging session
- For JavaScript code: Immediately after symbolication completes
Manual symbolication
Before you begin manual symbolication, check yourpackage.json to validate your build configuration. If you use custom logic instead of react-native build-kepler to generate JS Hermes bytecode bundles or JS source maps, ensure your Metro-generated files follow these naming conventions:
- JS plain-text bundle: index.bundle
- JS source map: *.bundle.map
If Vega Studio detects native code only, it prompts you to:
-
Select a symbol source:
If your device connects:
- Device - Pulls symbols and libraries from the connected device
- Debug rootfs - Vega Studio prompts you to provide the debug rootfs location (a Linux filesystem version with debugging symbols for troubleshooting apps)
- Add additional debug symbol folders (optional): a. Select Yes to add a folder. b. Select the folder location. c. Repeat or choose No to finish.
-
View results:
a. Review the symbolicated call stack in the terminal. This shows the exact code locations where the crash occurred.
b. Use the GDB debugging session to:
- Inspect variables and memory at the crash point
- Navigate through the call stack
- Examine the program state when it crashed
- View the ACR summary: When you close the GDB debugging session, Vega Studio generates and opens an ACR summary with processed crash information.
- At the prompt, choose Browse.
- Navigate to the project folder.
- Select .
- Add additional maps (optional): a. At the prompt, select Yes to add more maps. b. Select the map file location. c. Repeat or select No to finish.
- Review the symbolicated call stack in the terminal. This shows the exact JavaScript files and line numbers where the crash occurred.
- View the ACR summary: Vega Studio generates and opens an ACR summary automatically with processed crash information to help you identify the root cause.
MyComponent.tsx:87) instead of memory addresses.
If Vega Studio detects both native and JavaScript code, it prompts you to choose which code type to symbolicate. Follow the native or JavaScript steps based on your selection.
✓ Success: The terminal displays the symbolicated stack trace for the code type you selected.
Next steps
After you symbolicate your ACR:- Go to Detect Where the App Crash Originates to determine if the crash is in your code or Amazon code, and take action.
- Navigate to the identified file and line number in your code to implement a fix.
- Run your app on the same device type where the crash occurred to verify the fix.
- Check device logs after deployment to confirm the crash doesn’t reappear.
Troubleshooting
If you encounter issues when analyzing ACRs, see Fix crash analysis issues.Related topics
- Detect Where the App Crash Originates
- Debug Crashes with ACR Summary
- AI Assisted Crash Analysis
- Set Up Amazon Devices Builder Tools for AI-Powered Development
- Community: Vega supported libraries and services

