Hello,
We have recently received feedback from Samsung that we need to explicitly disable mouse-support:
If a mouse pointer is shown on your application and your application does not act according to mouse clicks, a serious defect will be reported when your application is verified by Samsung.
To address this we have added the following to our widget configuration:
<tizen:setting pointing-device-support='disable' />
But this alone does not work as we still see the pointer and are able to click elements.
In addition we’ve also tried all of the below (both individually and in combination with each other):
- Setting
cursor
styles tonone
for the entire document body - Setting all
pointer-events
tonone
for the entire document body - PointerLock API usage (i.e.
document.body.requestPointerLock()
/document.exitPointerLock()
)
But we still see the mouse on 2016, 2018 and 2020 devices (both basic and premiums), which is causing us to not be able to address this “critical” issue raised by Samsung.
Any help would be appreciated.
Thanks in advance.