Question

I am using Eclipse Helios for 3 weeks and it was work very good. But it doesn't work normally for 2 days.

First of all, Eclipse stops at %27 when it the application launching on my second attempt. So, when the app works first time it is show me the emulator. But when I try to work the app a second time, it is stop %27 on launching.

Secondly, Eclipse did not debug my application. I add my breakpoints onto the app and try to open the debug mode. But it is not show the emulator on debug mode and did not give any error. Just saying waiting the debugger for attach.

Was it helpful?

Solution

To avoid:

Start Eclipse Window -> AVD Manager Start an emulator Run the project

also refer to Eclipse gets stuck when trying to launch Android app

OTHER TIPS

Below two things will enable you to debug your application

1)Enable debugging in manifest file and

<uses-permission android:name="android.permission.SET_DEBUG_APP" />
<application android:debuggable="true">
........
</application>

2)In emulator/phone Settings->Applications->Development->USB debugging(Check this check box)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top