2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-09 19:10:42 +00:00

Closes #88 - Add Default + Browsable Intent Filter

This commit is contained in:
Emily Kager 2019-01-09 14:45:40 -08:00 committed by Colin Lee
parent cefa12224f
commit 0f6528eeb9

View File

@ -15,6 +15,14 @@
<category android:name="android.intent.category.LAUNCHER"/> <category android:name="android.intent.category.LAUNCHER"/>
</intent-filter> </intent-filter>
<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"/>
<data android:scheme="https"/>
</intent-filter>
</activity> </activity>
</application> </application>