开发者

Attaching debugger - android problem

I am new to android application development. Whenever I run a new app, after it gets installed and the activity launches, it displays a message saying "application is waiting for the debugger to attach" on the emulator. Afte开发者_运维技巧r that, application runs properly. But I am not getting what that message is and how I can stop it from getting displayed. Could anyone help me...?


its normal... when debugging it takes some time to connect to device or emulator. Its not a error message and u need not worry about it.

Some applications(I assume not yours) needs to have permissions to debug, then u need to have this code

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

In your manifest file .

or else have this

android:debuggable="true"

in the application tag in the AndroidManifest.xml

thanks


It means you run the application in debug mode to solve problems using the button shown on the screenshot.

Try the button at the right beside the debug button instead.

Attaching debugger - android problem

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜