Fix opening links in non-browser apps

This commit is contained in:
Grishka
2024-10-10 04:09:20 +03:00
parent b211789847
commit 42658add38

View File

@@ -23,7 +23,11 @@
</intent> </intent>
<intent> <intent>
<action android:name="android.intent.action.VIEW"/> <action android:name="android.intent.action.VIEW"/>
<data android:scheme="http"/> <data android:scheme="http" android:host="*"/>
</intent>
<intent>
<action android:name="android.intent.action.VIEW"/>
<data android:scheme="https" android:host="*"/>
</intent> </intent>
</queries> </queries>