I'd like to ask you about the gestures in android wear. There is some app (game 20x48), and playing that game player can swipe from one side to the other. And the problem is: when I swipe from left to right, the app is closing, because in android wear it's a custom gesture. So, my question is: how to disable that gesture in QtQuick App?
P.S: I tried to edit the Manifest, by adding some properties, including this one
<item name="android:windowSwipeToDismiss">false</item>
But it does not work. So, please, help me with this issue, thanks!
You can override the
onBackPressed()method and modify it as you require.