计算机知识分享网

【android】adb命令查看系统中所有程序包名

查看所有包名
adb shell pm list packages
可以加上grep查询关键词
adb shell pm list packages | grep 'david'

#Android