简体   繁体   English

Google Play开发者控制台上的奇怪崩溃报告

[英]Weird Crash Report on Google Play Developer Console

I have an app on the play store which has thrown an exception which I can see in the developer console. 我在Play商店有一个应用程序,它抛出了一个异常,我可以在开发人员控制台中看到。 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. 该应用程序不使用任何传感器,它是一个密码管理器,所以它不使用任何传感器或花哨的手势,所以我不明白MotionEvent ACTION_UP将是什么。

Thanks for any help you can provide. 感谢您的任何帮助,您可以提供。

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. 运动事件动作= ACTION_UP意味着手势已经在所描述的坐标处结束,在这种情况下意味着手指在位置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 http://developer.android.com/reference/android/view/MotionEvent.html#ACTION_UP

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 谷歌玩开发者控制台崩溃报告 - Google play developer console crash reports Google Play开发者控制台中没有崩溃报告? - No crash-reports in Google Play Developer Console? 在 Google Play Console 上找不到崩溃报告 - Could not find crash report on Google Play Console 了解Titanium对Google Play开发者控制台的崩溃日志 - Understand Google Play Developer Console's Crash Logs with Titanium Google Play 开发者控制台崩溃报告中缺少重要信息 - Vital information missing from Google Play Developer console crash reports Google Play控制台崩溃报告与我的应用无关 - Google Play Console crash report not related to my app Google Play控制台-崩溃报告:java.lang.RuntimeException - Google Play Console - Crash Report: java.lang.RuntimeException 活动响应方法中首选项管理器的 Google Play 控制台崩溃报告 - Google Play Console Crash Report on preference manager in on response method of Activity Google Play 预发布报告崩溃 - Google Play Prelaunch Report Crash 当Google Play开发者控制台收到崩溃或ANR时,是否可以收到通知(例如电子邮件)? - Is it possible to get notified (e.g. email) when the Google Play Developer Console receives a crash or ANR?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM