How to list all debuggable applications?

后端 未结 2 1197
小蘑菇
小蘑菇 2020-12-19 16:14

I want to see all the debuggable applications that are installed on my android phone.

Can I know them using adb? If yes, how?

2条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-19 16:34

    The 3rd column in the /data/system/packages.list has the debuggable flag.

    So you can do adb shell grep " 1 /" /data/system/packages.list to list all debuggable packages.

提交回复
热议问题