config ios and android

This commit is contained in:
2024-12-09 15:09:11 +02:00
parent 34e845175c
commit 1494ee6432
2 changed files with 23 additions and 0 deletions

View File

@@ -39,4 +39,22 @@
android:name="flutterEmbedding"
android:value="2" />
</application>
<!-- Provide required visibility configuration for API level 30 and above -->
<queries>
<!-- If your app checks for SMS support -->
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="sms" />
</intent>
<!-- If your app checks for call support -->
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="tel" />
</intent>
<!-- If your application checks for inAppBrowserView launch mode support -->
<intent>
<action android:name="android.support.customtabs.action.CustomTabsService" />
</intent>
</queries>
</manifest>