android抓日志

上一篇 / 下一篇  2014-10-29 13:02:27 / 个人分类:Android测试

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 工具抓包


TAG:

 

评分:0

我来说两句

Open Toolbar