抓取Android闪退日志

抓取Android闪退日志

android<=6.*    adb logcat -b main -b events -b system -v threadtime >F:\test.log
android>6      adb logcat -b all >F:\test.log

 

抓取日记直至设备重启

android<=6.*    adb shell "logcat -b all > /sdcard/test.log &"
anddroid>6     adb shell "logcat -b main -b events -b system -v threadtime > /sdcard/test.log &"

 

抓取崩溃堆栈

android<=6.*    adb shell dumpsys dropbox --print
android>6      adb logcat -b crash

 

posted @ 2021-04-20 19:54  SpriteGirl  阅读(204)  评论(0)    收藏  举报