Skip to content

Getting application logs or crashlogs on beta or release builds

Dmitry edited this page Jan 28, 2021 · 1 revision

So, what you need to do is:

image

1. How to find a crash stack trace.

  • Run "adb shell"
  • Run "logcat".
  • Open the app so it can crash.
  • Get the crash log and post it here.

The crash stack trace should look like this:

image

2. How to dump full log into a file.

  • Run "adb shell"
  • Run "adb logcat > C:\path\to\logs\file\log.txt" to start writing logs into the file.