I have made an android wear extension that utilizes the (accessible) wrist gestures from the android wear API, as described here: https://developer.android.com/wear/preview/features/gestures.html
However, after letting a few people try the app, I noticed that when a flick inwards or outwards didn't work, they tend to flick their wrist twice or quickly back and forth. This triggers the 'standard' 'shake' wrist gesture, which cancels my android wear app completely.
Question: does anyone know how to disable (or en-able for that matter) a specific wrist gesture?
I have coded an alternative, that looks at your wrist rotation using the SENS_ROTATION_VECTOR, which works pretty well. However, this method is susceptible to other 'daily movements'. The build in wrist gesture is more stable and less vulnerable for 'daily movements'. I'd therefore prefer to use the standard wrist gestures.
I am running on android wear 1.0 (intended). I am looking forward to any help!