Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to play a YouTube video on a Kindle Fire HD. On common Android devices is simple since Intent.ACTION_VIEW invokes the pre-installed YouTube app. Based on the logs, on the Kindle, which lacks the YouTube app, the Intent.ACTION_VIEW invokes the native Silk browser which loads the YouTube page and from there when clicking the Play button (overlapping the video thumb) the Kindle will invoke the native AwesomePlayer.

11-20 11:23:45.392: I/AwesomePlayer(107): Awsomeplayer is created

...

11-20 11:23:46.431: D/AwesomePlayer(107): Mime = video/avc

11-20 11:23:46.431: D/AwesomePlayer(107): Mime = audio/mp4a-latm

11-20 11:23:46.431: D/AwesomePlayer(107): getTrackAudioVideoProfile audioOrVideo=2

11-20 11:23:46.431: D/AwesomePlayer(107): Play - AUDIO/VIDEO

...

I would like to bypass the Silk browser and launch directly Kindle's native "AwesomePlayer" from my android activity. Is that possible ?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.