Prerequisites
Before analyzing crash sources, read Debug App Crash Using Vega Studio to learn how to pull and symbolicate aggregated crash report (ACR) files from your device.Stack traces and stack frames
Stack traces are the sequence of functions that occurred leading up to the crash, while stack frames are the individual function calls that make up the stack trace.Native stack frames
For native crashes, stack frames include frame number, address of the function, and library name corresponding to the address. If debug symbols are available, the frame can also show function name, file where the function is located, and line number in the function where the address corresponds. Example of a native stack frame:JavaScript stack frames
For JavaScript, stack frames include function name, file where the function is located, and line number. Example of a JavaScript stack frame:Types of apps and their stack traces
Different types of apps produce different stack traces when they crash. Understanding which type of app you’re working with helps you analyze the crash data correctly.JavaScript-only apps
In JavaScript-only apps, you should only see JavaScript stack traces like this:@amazon-devices.
Example:
@amazon-devices in the path.
Example:
Mixed JavaScript and native apps
In mixed JavaScript and native apps, you might see native stack traces. Vega Studio shows one of two types of stack traces:- A JavaScript stack trace (if available in the ACR file)
- A native stack trace (if no JavaScript trace is present)
Contact Amazon support
Please contact Amazon support when you see any of the following issues:- You see native stack traces in a JavaScript-only app
- Stack traces don’t reference your code
- In JavaScript stack traces, the topmost frame doesn’t point to your app code
Related topics
- Debug App Crash Using Vega Studio
- Perform Line-by-Line Debugging with Vega Studio
- Debug Your App with Developer Menu Tools

