Skip to content

Commit 353db0b

Browse files
authored
Merge pull request #9726 from Stypox/fix-api30+-links
Fix opening URLs in browser on API 30+
2 parents 281cdf6 + d1aed94 commit 353db0b

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

app/src/main/AndroidManifest.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@
1111
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
1212
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
1313

14+
<!-- We need to be able to open links in the browser on API 30+ -->
15+
<queries>
16+
<intent>
17+
<action android:name="android.intent.action.VIEW" />
18+
<data android:scheme="http|https|market" />
19+
</intent>
20+
</queries>
21+
1422
<uses-feature
1523
android:name="android.hardware.touchscreen"
1624
android:required="false" />

0 commit comments

Comments
 (0)