Add Build.DISPLAY to logcat output

This commit is contained in:
xynngh 2020-09-27 22:24:58 +04:00
parent c1371cdd17
commit 126bf79cc9

View File

@ -114,6 +114,7 @@ public class DebuggingUtils {
writer.append("Product: ").append(android.os.Build.PRODUCT).append('\n');
writer.append("Device: ").append(android.os.Build.DEVICE).append('\n');
writer.append("Board: ").append(Build.BOARD).append('\n');
writer.append("Build display ID: ").append(Build.DISPLAY).append('\n');
}
}