You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are getting this crash in the TwoFingerGestureDetector.
Fatal Exception: java.lang.IllegalArgumentException: pointerIndex out of range
at android.view.MotionEvent.nativeGetAxisValue(MotionEvent.java)
at android.view.MotionEvent.getX(MotionEvent.java:2379)
at com.almeros.android.multitouch.TwoFingerGestureDetector.updateStateByEvent(TwoFingerGestureDetector.java:77)
at com.almeros.android.multitouch.RotateGestureDetector.handleInProgressEvent(RotateGestureDetector.java:136)
at com.almeros.android.multitouch.BaseGestureDetector.onTouchEvent(BaseGestureDetector.java:66)
The text was updated successfully, but these errors were encountered:
Can you elaborate a bit more on when and how you get this (how to reproduce)?
Looks like somehow getX(...) can't find the pointerIndex of value '1' it's given here, which is strange when the 'Two'FingerGestureDetector is used. So, perhaps you are moving a finger/pointer out of the screen when this happens?
We are getting this crash in the TwoFingerGestureDetector.
The text was updated successfully, but these errors were encountered: