6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit b404ba16
Changed files
.../android/app/src/main/AndroidManifest.xml | 86 +++++++++------------- 1 file changed, 33 insertions(+), 53 deletions(-)
Diff
diff --git a/comwell_key_app/android/app/src/main/AndroidManifest.xml b/comwell_key_app/android/app/src/main/AndroidManifest.xml
index 75d1f195..21cbd818 100644
--- a/comwell_key_app/android/app/src/main/AndroidManifest.xml
+++ b/comwell_key_app/android/app/src/main/AndroidManifest.xml
@@ -2,39 +2,39 @@
<uses-feature
android:name="android.hardware.nfc.hce"
- android:required="false" />
+ android:required="false"/>
- <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>
- <intent>
- <action android:name="android.intent.action.SENDTO" />
- <data android:scheme="mailto" />
- </intent>
- </queries>
+ <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>
+ <intent>
+ <action android:name="android.intent.action.SENDTO" />
+ <data android:scheme="mailto" />
+ </intent>
+ </queries>
<application
+ android:label="@string/app_name"
android:name="${applicationName}"
- android:icon="@mipmap/launcher_icon"
- android:label="@string/app_name">
+ android:icon="@mipmap/launcher_icon">
<activity
android:name=".MainActivity"
- android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:exported="true"
- android:hardwareAccelerated="true"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
+ android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
+ android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<!-- Specifies an Android theme to apply to this Activity as soon as
the Android process has started. This theme is visible to the user
@@ -45,30 +45,20 @@
android:resource="@style/AppTheme" />
<intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
+ <action android:name="android.intent.action.MAIN"/>
+ <category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
- <meta-data
- android:name="flutter_deeplinking_enabled"
- android:value="true" />
-
+ <meta-data android:name="flutter_deeplinking_enabled" android:value="true" />
<intent-filter>
-
<data
android:host="${applicationId}"
android:path="/adyenPayment"
android:scheme="adyencheckout" />
-
- <data
- android:host="comwell.app"
- android:scheme="app" />
</intent-filter>
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
- <!-- <data android:scheme="https" android:host="comwellservicesdev.b2clogin.com" android:path="/oauthredirect" /> -->
- <!-- <data android:scheme="msal40304e05-f354-49b2-9934-1b42f311751a" android:host="/auth" /> -->
<data
android:host="comwell-v2.ddev.site"
@@ -82,20 +72,10 @@
<meta-data
android:name="flutterEmbedding"
android:value="2" />
- <meta-data
- android:name="firebase_analytics_collection_enabled"
- android:value="false" />
- <meta-data
- android:name="google_analytics_default_allow_analytics_storage"
- android:value="false" />
- <meta-data
- android:name="google_analytics_default_allow_ad_storage"
- android:value="false" />
- <meta-data
- android:name="google_analytics_default_allow_ad_user_data"
- android:value="false" />
- <meta-data
- android:name="google_analytics_default_allow_ad_personalization_signals"
- android:value="false" />
+ <meta-data android:name="firebase_analytics_collection_enabled" android:value="false" />
+ <meta-data android:name="google_analytics_default_allow_analytics_storage" android:value="false" />
+ <meta-data android:name="google_analytics_default_allow_ad_storage" android:value="false" />
+ <meta-data android:name="google_analytics_default_allow_ad_user_data" android:value="false" />
+ <meta-data android:name="google_analytics_default_allow_ad_personalization_signals" android:value="false" />
</application>
</manifest>