1、查看apk内容 

aapt dump badging <apk_path> | grep XXX //获取XXX信息
aapt dump xmltree <apk-file> AndroidManifest.xml
aapt list -a <apk-file>|grep 'Version'

2、查看monkey运行与结束

adb shell ps | grep monkey
adb shell ps | awk '/com\.android\.commands\.monkey/ { system("adb shell kill " $2) }'

 

相关文章:

  • 2021-09-08
  • 2021-10-08
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-31
  • 2022-01-03
猜你喜欢
  • 2022-12-23
  • 2021-11-14
  • 2022-12-23
  • 2021-12-05
  • 2021-10-13
  • 2021-09-05
相关资源
相似解决方案