ErrorReporter: Add Android version to report subjects.

This commit is contained in:
Andreas Schildbach 2018-12-13 20:09:58 +01:00
parent afcdf3488f
commit 51e8350dee

View file

@ -239,6 +239,7 @@ public class ErrorReporter implements Thread.UncaughtExceptionHandler {
final String installer = Installer.installerPackageName(context);
if (installer != null)
subject.append(", installer ").append(installer);
subject.append(", android ").append(Build.VERSION.RELEASE);
return subject.toString();
}