View activity stack in Android

android, android-activity, debugging, stack

Solution

To display the activity stack, run the following command :

adb shell dumpsys activity activities

Problem

Is it possible to view the activity stack in Android for debugging purposes?

Original source

Related problems