Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm developing an app that is designed to be launched (only) from another app which provides extras in the Intent. So this app does not use the LAUNCHER category in its intent filter, and does not launch and attach to the debugger when I start it from Eclipse.

It's very difficult to debug anything related to launching or the Intent, because I can only debug by adding the LAUNCHER category to the manifest and thus circumventing the intended method of starting the activity, without the necessary extras. Is there any way that I can specify the launch Intent sent by ADB to include the extra data?

share|improve this question

1 Answer

When facing similar challenge I was able to provide extras to the broadcast I was trying to send by switching to the URI form:

am broadcast "intent:#Intent;action=android.intent.action.AIRPLANE_MODE;B.state=true;end"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.