I normally debug my apps by pressing the little "bug" icon in Eclipse.
But now I have inserted an intent filter like this in my manifest:
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
While the app launches now automatically when the USB cable is plugged in - I cannot debug it anymore. There is no stop at any breakpoint anymore.
How would I debug the app when launched through an intent?
Many thanks!