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 t
Solution 1:
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-permissionandroid: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
Solution 2:
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.
Post a Comment for "Attaching Debugger - Android Problem"