feat: add build fingerprint to log file #135

Closed
septs wants to merge 1 commit from septs:fingerprint into master

View file

@ -40,6 +40,7 @@ class LogsActivity : AppCompatActivity() {
appendLine("Manufacturer: ${Build.MANUFACTURER}") appendLine("Manufacturer: ${Build.MANUFACTURER}")
appendLine("Brand: ${Build.BRAND}") appendLine("Brand: ${Build.BRAND}")
appendLine("Model: ${Build.MODEL}") appendLine("Model: ${Build.MODEL}")
appendLine("Fingerprint: ${Build.FINGERPRINT}")
appendLine("SDK Version: ${Build.VERSION.SDK_INT}") appendLine("SDK Version: ${Build.VERSION.SDK_INT}")
appendLine("App Version: $selfAppVersion") appendLine("App Version: $selfAppVersion")
appendLine("-".repeat(10)) appendLine("-".repeat(10))