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 工具抓包
技術改變世界!
--狂詩絕劍

浙公網安備 33010602011771號