Added SoC to debug info

This commit is contained in:
M66B 2022-01-09 18:02:08 +01:00
parent 04ba45af64
commit 0f4bfbfc04
1 changed files with 2 additions and 0 deletions

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");