Skip to content

Commit

Permalink
Merge pull request #25 from geovnn/master
Browse files Browse the repository at this point in the history
fix "could not launch" bug when clicking on links
  • Loading branch information
felipebueno authored Sep 19, 2024
2 parents 4f97542 + b03737b commit 8c5a085
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,16 @@
<meta-data android:name="flutterEmbedding"
android:value="2" />
</application>

<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 8c5a085

Please sign in to comment.