应用程序正在等待调试器

时间:2014-12-06 16:11:14

标签: java android eclipse debugging android-studio

我知道这已被多次提及,但我注意到以前没有谈过的奇怪的事情。事实上,当应用程序部署在设备上时,即使我们将设备与PC断开连接并重新启动手机,应用程序仍会显示此消息"等待调试器"。

当我们插入电脑并在IDE中附加调试器时,应用程序开始正常运行。同样是我们断开调试器 - >应用程序,弹出黑屏和"等待调试器"。我们可以将其迭代到无穷大。

看起来好像有一些依赖调试器。

在清单中设置为启动器的活动:

<activity
        android:name=".activities.SplashScreenActivity"
        android:screenOrientation="portrait">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

项目内容:

buildscript {
    repositories {
        jcenter()
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.14.4'

    }
}

app module buildscript:

apply plugin: 'android'
android {
    compileSdkVersion 21
    buildToolsVersion "21.1.1"

    defaultConfig {
        applicationId "com.dot42"
        minSdkVersion 14
        targetSdkVersion 21
        versionCode 1
        versionName "1.0"
    }

    dependencies {
        compile fileTree(dir: 'libs', include: ['*.jar'])
        compile project(':deviceList')
    }
}

库模块buildscript:

apply plugin: 'com.android.library'

android {
    compileSdkVersion 'Google Inc.:Google APIs:21'
    buildToolsVersion "21.1.1"

    defaultConfig {
        minSdkVersion 14
        targetSdkVersion 21

    }

}

dependencies {
    compile 'com.android.support:support-v4:21.0.2'
}

有什么想法吗?

2 个答案:

答案 0 :(得分:-1)

转到设置&gt;开发者选项 在“调试”部分中,确保未为您的应用程序设置“选择调试应用程序”,同时选中“等待调试程序”选项。 如果是这样,这是预期的行为,因为Debugged应用程序在执行之前等待调试器附加。

答案 1 :(得分:-1)

访问此链接图像,将保证为您工作。

enter image description here