Answers:
错误报告存储在中/data/data/com.android.shell/files/bugreports
。
如果没有root用户访问权限,则无法直接访问文件。
/data/data/com.android.shell/files/bugreports
访问shell
。
您可以将设备连接到PC,并使用android SDK工具adb,然后转到目录并在命令行中使用adb shell bugreport > bugreport.txt
Your Bugreport将输出。
从Android 10开始,至少对于Pixel设备,从该设备获取的错误报告可用/bugreports
- 即使没有root访问权限!您可以通过以下方式获取可用错误报告的名称:
adb shell ls /bugreports/
然后用获取所需的文件adb pull
,例如
adb pull /bugreports/bugreport-foobar-lotsofnumbers-date.zip