About page

This commit is contained in:
2024-02-08 20:30:19 +08:00
parent 13203c9ce9
commit 29f92f64c1
14 changed files with 275 additions and 83 deletions

View File

@ -30,4 +30,21 @@
android:name="flutterEmbedding"
android:value="2" />
</application>
<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>