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.
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.
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
Bugreports are stored in /data/data/com.android.shell/files/bugreports.
You can't access the file directly without root access.
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.
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.