Hi,
I'm developing a Connect IQ app, and I need to determine whether the watch has an AMOLED or MiP display. Currently, I don't see any direct API method to check the display type.
For now, my approach is to use Device.getDeviceInfo().screen
and check the resolution. If x > 300
, I assume it's an AMOLED display. However, this feels like a workaround rather than a proper solution.
Another option is Device.getModel()
, comparing it against a list of known AMOLED models, but that also seems inelegant.
Is there an official way to determine the display type in Monkey C?
Thanks!