Skip to content

Commit

Permalink
Merge remote-tracking branch 'ackalker/fix-play-on-xbmc'
Browse files Browse the repository at this point in the history
Pull request freezy#44, fixes issue: "Play on XBMC" no longer shows up in apps that used to support it
  • Loading branch information
bitgangsta committed Sep 23, 2012
2 parents 83a10f7 + f0eb82f commit 8bf9e28
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,13 @@
<data android:scheme="http" android:mimeType="image/*"/>
<data android:scheme="http" android:mimeType="video/*"/>
<data android:scheme="http" android:mimeType="audio/*"/>
</intent-filter>
</activity>
<activity android:name=".presentation.activity.MediaIntentActivity" android:theme="@android:style/Theme.NoTitleBar" android:label="@string/play_on_xbmc">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" android:host="youtube.com"/>
<data android:scheme="http" android:host="www.youtube.com"/>
</intent-filter>
Expand Down

0 comments on commit 8bf9e28

Please sign in to comment.