Android调试不工作,正在等待调试器

Android调试不工作,正在等待调试器,android,eclipse,Android,Eclipse,在你否决之前,请先看看我的问题。我知道这一直是stackoverflow的主题,但我似乎不明白为什么它对我不起作用。 我试着把android:debuggable=“true”和 <uses-permission android:name="android.permission.SET_DEBUG_APP"></uses-permission> 在舱单上。即使在模拟器中也不起作用。我使用eclipsejuno。有人知道如何解决这个问题吗 我甚至重新启动了我的手机,但

在你否决之前,请先看看我的问题。我知道这一直是stackoverflow的主题,但我似乎不明白为什么它对我不起作用。 我试着把
android:debuggable=“true”

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

在舱单上。即使在模拟器中也不起作用。我使用eclipsejuno。有人知道如何解决这个问题吗

我甚至重新启动了我的手机,但没有运气。谢谢

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.breakpoint"
    android:versionCode="1"

    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.SET_DEBUG_APP"></uses-permission>
    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
       android:debuggable="true"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/title_activity_main" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

您找到解决方案了吗?我也遇到了同样的问题:\