16

If I have bug reports enabled in dev options and I take a bugreport from the power button menu, where are these reports saved?

I see there is an option to share it, but I want to pull it directly through adb for analysis.

arcyqwerty
  • 750
  • 2
  • 10
  • 28

5 Answers5

10

As of Android 10, at least for Pixel devices, bugreports taken from the device are available in /bugreports - even without root access! You can get the names of the available bug reports with

adb shell ls /bugreports/

then get the file you want with adb pull, e.g.

adb pull /bugreports/bugreport-foobar-lotsofnumbers-date.zip
Jan Schejbal
  • 201
  • 2
  • 2
8

Bugreports are stored in /data/data/com.android.shell/files/bugreports.

You can't access the file directly without root access.

Firelord
  • 25,084
  • 20
  • 124
  • 286
arcyqwerty
  • 750
  • 2
  • 10
  • 28
  • On Android 6 (at least on Samsung Galaxy J5) is /data/data/com.android.shell/files/bugreports accessible also for shell user. – pevik Nov 15 '17 at 20:27
5

In my case, they are in /data/user_de/0/com.android.shell/files/bugreports/

rds
  • 614
  • 3
  • 10
  • 19
4

You can connect your device to your PC, and use android SDK tools adb, then go to the directory and in your command line use adb shell bugreport > bugreport.txt Your bugreport will output.

Zero
  • 141
  • 1
  • 7
    That will work for taking a new bugreport but not for retrieving one that already exists (i.e. taken while using the phone unattached to adb) – arcyqwerty Mar 28 '16 at 14:52
2

If you want to view the bug reports on your PC, run adb from a directory where you want to save the bugreports with

adb pull /data/data/com.android.shell/files/bugreports

But this may require root permission.

pevik
  • 276
  • 1
  • 2
  • 15
user241636
  • 21
  • 1
  • That has already been mentioned in this answer – apart from the adb pull part. When using adb, on the device's end it's usually running as shell user – which IMHO is the owner of that location, so no root should be needed to pull the files. – Izzy Oct 25 '17 at 14:02