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 ?