How to get the list of all apps on android device using terminal

adb, android, java, terminal

Solution

Previously the command for listing installed packages used to be `pm list packages`. But as of Android nougat, the command has been deprecated. The new command to do the same is `cmd package list packages`.

Problem

there is a command line to get package name:- ``` adb shell pm list packages ``` But how to get the list of all applications on the device

Original source

Related problems