1. adb logcat -c 清楚以前的日志
adb logcat -s 过滤 adb logcat -s *:E
adb logcat -v 指定输出的格式 adb logcat -v brief
====
brief — Display priority/tag and PID of originating process (the default format).
process — Display PID only.
tag — Display the priority/tag only.
thread — Display process:thread and priority/tag only.
raw — Display the raw log message, with no other metadata fields.
time — Display the date, invocation time, priority/tag, and PID of the originating process.
long — Display all metadata fields and separate messages with a blank lines.
=======
adb logcat -f filename: 输出到文件

2.
启动的方法为
# am start -n 包(package)名/包名.活动(activity)名称
启动的方法可以从每个应用的AndroidManifest.xml的文件中得到
Music 和 Video(音乐和视频)的启动方法为:
# am start -n com.android.music/com.android.music.MusicBrowserActivity
# am start -n com.android.music/com.android.music.VideoBrowserActivity
# am start -n com.android.music/com.android.music.MediaPlaybackActivity
Camera(照相机)的启动方法为:
# am start -n com.android.camera/com.android.camera.Camera
Browser(浏览器)的启动方法为:
# am start -n com.android.browser/com.android.browser.BrowserActivity
启动浏览器 :
am start -a android.intent.action.VIEW -d  http://www.google.cn/
拨打电话 :
am start -a android.intent.action.CALL -d tel:10086
启动 google map 直接定位到北京 :
am start -a android.intent.action.VIEW geo:0,0?q=beijing
模拟低电量
adb shell am broadcast -a android.intent.action.BATTERY_CHANGED --ei "level" 3 --ei "scale" 100

3. GAT 工具抓包

 

相关文章:

  • 2022-12-23
  • 2022-03-07
  • 2021-11-14
  • 2022-12-23
  • 2021-11-26
  • 2022-02-02
  • 2021-07-19
  • 2021-07-25
猜你喜欢
  • 2021-12-07
  • 2021-10-16
  • 2021-05-28
  • 2022-12-23
  • 2021-10-29
  • 2021-10-24
  • 2021-11-30
相关资源
相似解决方案