Getting logs of crashes can make fixing them much easier.
This is the traditional way. Maybe there's some newfangled wifi way, I don't know :)
Install the adb
command line tool on your PC or Mac. There are two ways:
adb.exe
./Users/YOUR_USER_NAME/Library/Android/sdk/platform-tools/adb
. On PC, it'll be where you installed the SDK, and then /sdk/platform-tools/adb.exe
.Make sure your device is in developer mode (you can sideload APKs). Make sure "USB Debugging" is checked in developer settings.
Connect your device to your PC/Mac via USB.
In a command prompt, enter the following line (yes, all of it):
adb logcat -s DEBUG AndroidRuntime PPSSPPNativeActivity PPSSPP NativeGLView NativeRenderer NativeSurfaceView PowerSaveModeReceiver InputDeviceState PpssppActivity CameraHelper
Find whatever looks like a crash dump, and paste it and some lines before it into your bug report.
See this article for instructions. This will collect a lot of irrelevant logs too, so it may be harder to read the output. The adb way is preferable.