Skip to content

Commit

Permalink
Android add supported url schemes
Browse files Browse the repository at this point in the history
  • Loading branch information
Codel1417 committed Jun 23, 2024
1 parent 800d27f commit d4d17ad
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,5 +78,16 @@
android:exported="false"
android:foregroundServiceType="connectedDevice" />
</application>

<!-- Provide required visibility configuration for API level 30 and above -->
<queries>
<!-- If your app checks for mailto support -->
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="mailto" />
</intent>
<!-- If your application checks for inAppBrowserView launch mode support -->
<intent>
<action android:name="android.support.customtabs.action.CustomTabsService" />
</intent>
</queries>
</manifest>

0 comments on commit d4d17ad

Please sign in to comment.