Makes the exception name the first line in the report

This commit is contained in:
Vitor Pamplona
2025-08-29 09:34:41 -04:00
parent 458a7c7377
commit aaae806505
@@ -26,6 +26,9 @@ import com.vitorpamplona.amethyst.BuildConfig
class ReportAssembler {
fun buildReport(e: Throwable): String =
buildString {
append(e.javaClass.simpleName)
appendLine()
// Device and Product Information
append("Amethyst Version: ")
appendLine(BuildConfig.VERSION_NAME + "-" + BuildConfig.FLAVOR.uppercase())