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.
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.
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.