I want to see all the debuggable applications that are installed on my android phone.
Can I know them using adb? If yes, how?
The 3rd column in the /data/system/packages.list has the debuggable flag.
/data/system/packages.list
debuggable
So you can do adb shell grep " 1 /" /data/system/packages.list to list all debuggable packages.
adb shell grep " 1 /" /data/system/packages.list