Skip to content

Commit

Permalink
Fix opening urls in browser on API 30+
Browse files Browse the repository at this point in the history
  • Loading branch information
Stypox committed Jan 29, 2023
1 parent 281cdf6 commit d1aed94
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>

<!-- We need to be able to open links in the browser on API 30+ -->
<queries>
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="http|https|market" />
</intent>
</queries>

<uses-feature
android:name="android.hardware.touchscreen"
android:required="false" />
Expand Down

0 comments on commit d1aed94

Please sign in to comment.