Skip to content

Commit

Permalink
fix: add http/https to AndroidManifest
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaconC committed Nov 13, 2024
1 parent 2302ac1 commit e0ee0aa
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,14 @@
</intent-filter>
</activity>
</application>
<queries>
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="https"/>
</intent>
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="http"/>
</intent>
</queries>
</manifest>

0 comments on commit e0ee0aa

Please sign in to comment.