2

How can I read display related stuff like HDMI version?

Currently, I do not want to change them. I only want to read them in the first place.

Edna Krabappel
  • 362
  • 1
  • 2
  • 16
  • 2
    Refer - https://stackoverflow.com/questions/10496872/android-get-hardware-information-programmatically – Sasaki Jun 01 '21 at 17:42

1 Answers1

0

This should work:

Log.i("ManuFacturer :", Build.MANUFACTURER);
Log.i("Board : ", Build.BOARD);
Log.i("Display : ", Build.DISPLAY);

You need to use this in Android Studio which would involve building and compiling a simple app. I believe you can keep your device plugged into your main PC and use it as a test device. You will then be able to see the output.

Ethan J
  • 140
  • 1
  • 9