Eclipse Android调试无法按预期工作

时间:2012-03-29 11:10:50

标签: android eclipse debugging sdk helios

我正在使用Eclipse Helios 3周,它的工作非常好。但它在2天内无法正常工作。

首先,当我第二次尝试启动应用程序时,Eclipse在%27处停止。因此,当应用程序第一次工作时它会显示模拟器。但是当我第二次尝试使用该应用程序时,它会在启动时停止%27。

其次,Eclipse没有调试我的应用程序。我将断点添加到应用程序并尝试打开调试模式。但它没有在调试模式下显示模拟器,也没有给出任何错误。只是说waiting the debugger for attach

2 个答案:

答案 0 :(得分:1)

要避免:

启动Eclipse 窗口 - > AVD经理 启动模拟器 运行项目

也指 Eclipse gets stuck when trying to launch Android app

答案 1 :(得分:0)

以下两项内容可让您调试应用程序

1)在清单文件和

中启用调试
<uses-permission android:name="android.permission.SET_DEBUG_APP" />
<application android:debuggable="true">
........
</application>

2)在模拟器/手机设置 - &gt;应用程序 - &gt;开发 - &gt; USB调试(选中此复选框)