1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-26 09:47:13 +00:00

Added SoC to debug info

This commit is contained in:
M66B 2022-01-09 18:02:08 +01:00
parent 04ba45af64
commit 0f4bfbfc04

View file

@ -1805,6 +1805,8 @@ public class Log {
sb.append(String.format("Time: %s\r\n", new Date(Build.TIME).toString()));
sb.append(String.format("Display: %s\r\n", Build.DISPLAY));
sb.append(String.format("Id: %s\r\n", Build.ID));
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S)
sb.append(String.format("SoC: %s/%s\r\n", Build.SOC_MANUFACTURER, Build.SOC_MODEL));
sb.append(String.format("uid: %d\r\n", android.os.Process.myUid()));
sb.append("\r\n");