Android app crashes with SIGABRT Signal 6 only while Eclipse debugging

前端 未结 4 524
北恋
北恋 2020-11-28 08:24

I have an app that runs perfectly fine on a device without a debugger attached. However, I have a problem when debugging in Eclipse:

When the main thread is susp

相关标签:
4条回答
  • 2020-11-28 09:03

    I had to reinstall android studio one time and the second time it happened it just went away by its self

    0 讨论(0)
  • 2020-11-28 09:09

    android intentionally kills the process because it thinks the UI thread is hung, so its a ANR right. for debugging purposes you can,

    Go to Settings -> Developer options and check Show all ANRs.

    This will show an App Not Responding dialog for apps running in the background. You can click the Wait button in the dialog to prevent the system from killing your process until the debugger attaches. Note that the dialog is opened automatically for apps running in the foreground. For background apps, you have to enable this option

    0 讨论(0)
  • 2020-11-28 09:12

    I had similar issues, but what Sam suggested didn't help - I had to actually REMOVE the breakpoints and then it worked for me.

    0 讨论(0)
  • 2020-11-28 09:15

    This started happening to me in android 7.1.1

    When attaching debugger my app always crashed, same when starting app in debug mode.

    What fixed it for me is simply:

    • Run your app
    • Click on "Mute Breakpoints" in Debug
    • Attach the debugger
    • Re-Click on "Mute Breakpoints" to unmute
    • Done, debugging works again
    0 讨论(0)
提交回复
热议问题