Skip to content

Commit

Permalink
Add intents to open http links in external browser
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamMorrow committed Nov 27, 2024
1 parent d067028 commit 3ed1531
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions LiftLog.Maui/Platforms/Android/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,14 @@
android:fullBackupContent="@xml/auto_backup_rules"></application>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<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 3ed1531

Please sign in to comment.