Skip to content

Commit

Permalink
[SG-978] Added queries to http and https into manifest (#2282)
Browse files Browse the repository at this point in the history
(cherry picked from commit 64fefac)
  • Loading branch information
andrebispo5 authored and trmartin4 committed Jan 6, 2023
1 parent bf19966 commit 6a25182
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/Android/Properties/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,16 @@
</intent-filter>
</activity>
</application>
<!-- Support for Xamarin.Essentials.Browser.OpenAsync (for Android > 11) -->
<!-- Related docs: https://learn.microsoft.com/en-us/xamarin/essentials/open-browser?tabs=android -->
<queries>
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="http"/>
</intent>
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="https"/>
</intent>
</queries>
</manifest>

0 comments on commit 6a25182

Please sign in to comment.