要记录我的应用程序(日志标记是Crime)我通常使用这样的bat文件:
adb disconnect
adb kill-server
adb start-server
adb connect usb
del c:\ Users \ YURY \ Desktop \ log.html
adb logcat -c
adb logcat Crime -d *:S> C:\ Users \用户YURY \桌面\ log.html
它完美适用于Android模拟器API 23并将日志存储在桌面上。但是使用android模拟器API 25(7.1.1)我无法开始记录。
我记得“没有记忆”的消息。可能有人可以帮助我吗?
答案 0 :(得分:0)
在android Studio中
转到"工具 - > Android - > AVD管理器 - >选择你的模拟器 - >编辑 - >高级设置 - >将RAM参数更改为512 Mb或1024 MB
答案 1 :(得分:0)
通过从adb logcat远程处理-d键解决
像这样:
adb disconnect
adb kill-server
adb start-server
adb connect usb
del c:\ Users \ YURY \ Desktop \ log.html
adb logcat -c
adb logcat Crime *:S> C:\ Users \用户YURY \桌面\ log.html