Reputation: 36237
I have an app on the play store which has thrown an exception which I can see in the developer console. The error is as follows
java.lang.RuntimeException: MotionEvent { action=ACTION_UP, id[0]=0, x[0]=402.8711, y[0]=144.54651, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=1398177, downTime=1398087, deviceId=6, source=0x1002 } recycled twice!
at android.view.MotionEvent.recycle(MotionEvent.java:1659)
at android.view.ViewRootImpl.finishMotionEvent(ViewRootImpl.java:2977)
at android.view.ViewRootImpl.deliverPointerEvent(ViewRootImpl.java:2968)
at android.view.ViewRootImpl.handleMessage(ViewRootImpl.java:2522)
at android.view.ViewRootImpl.processInputEvents(ViewRootImpl.java:862)
at android.view.ViewRootImpl.handleMessage(ViewRootImpl.java:2531)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:154)
at android.app.ActivityThread.main(ActivityThread.java:4944)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
at dalvik.system.NativeStart.main(Native Method)
I do not understand what this exception is relating to. The app doesn't use any sensors, its a password manager so it doesn't use any sensors or fancy gestures so I don't understand what the MotionEvent ACTION_UP would be for.
Thanks for any help you can provide.
Upvotes: 0
Views: 307
Reputation: 144
Motion Event action=ACTION_UP means that a gesture has ended at the described coordinates, means in this case that the finger goes up in the location x=402.8711, y=144.54651. In other words: The error happend in this place.
http://developer.android.com/reference/android/view/MotionEvent.html#ACTION_UP
Upvotes: 2