Enable crash reports by default in test versions

This commit is contained in:
M66B
2022-01-09 14:48:37 +01:00
parent eed4fa0638
commit 7d0e13493c
2 changed files with 5 additions and 5 deletions

View File

@@ -934,7 +934,7 @@ public class Helper {
html += "Locale: " + Html.escapeHtml(slocale.toString()) + "<br>";
if (language != null)
html += "Language: " + Html.escapeHtml(language) + "<br>";
if (reporting && uuid != null)
if ((reporting || BuildConfig.TEST_RELEASE) && uuid != null)
html += "UUID: " + Html.escapeHtml(uuid) + "<br>";
html += "</p>";