Support both http and https URLs in share menu (#293)

This commit is contained in:
tomerf 2016-10-11 21:23:20 +03:00 committed by Synced Synapse
parent dadabd09c5
commit f3728a9dc4
1 changed files with 8 additions and 6 deletions

View File

@ -40,12 +40,14 @@
<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="m.youtube.com"/>
<data android:scheme="http" android:host="www.youtube.com"/>
<data android:scheme="http" android:host="vimeo.com"/>
<data android:scheme="http" android:host="www.vimeo.com"/>
<data android:scheme="http" android:host="player.vimeo.com"/>
<data android:scheme="http" />
<data android:scheme="https" />
<data android:host="youtube.com"/>
<data android:host="m.youtube.com"/>
<data android:host="www.youtube.com"/>
<data android:host="vimeo.com"/>
<data android:host="www.vimeo.com"/>
<data android:host="player.vimeo.com"/>
</intent-filter>
</activity>