Android tracing, monitoring and debugging

Revision as of 09:43, 12 September 2019 by Registered User

This article provides useful information to start using Android tracing, monitoring and debugging environments.

1. Specific Linux trace and debug tools[edit source]

In Android various Linux trace and debug tools are available. To get the global picture you can refer to Linux tracing, monitoring and debugging page.

2. Android tools[edit source]

2.1. Application debugging[edit source]

To debug your Android application you can use Android Studio to do so. Please read the official documentation about Android Studio[1].

2.2. adeb[edit source]

adeb (also known as androdeb) provides a powerful Linux shell environment where one can run popular and mainstream Linux tracing, compiling, editing and other development tools on an existing Android device. All the commands typically available on a modern Linux system are supported in adeb.

It consist in putting a Debian distribution into the Android system itself to execute more debug commands.

For more information refer to the ADEB page.

2.3. logcat[edit source]

The Android logging system provides a mechanism for collecting and viewing system debug output. Logs from various applications and portions of the system are collected in a series of circular buffers, which then can be viewed and filtered by the logcat command. You can use logcat from an ADB shell to view the log messages.

For more information refer to the Android developer site[2].

2.4. perfetto[edit source]

Perfetto is an open-source project for performance instrumentation and tracing of Android platforms and user-space apps.

For more information refer to the perfetto page.

3. References[edit source]