views:

217

answers:

1

What kind of permission/Flag do I have to add to the manifest to debug my application on an actual Android device?

+11  A: 

add android:debuggable="true" to the <application> element

More info here: http://developer.android.com/intl/de/guide/developing/device.html

mbaird