Fixes for open https links for android
M committed
Jan 31, 2022 at 14:09 UTC
70fb6e5ebfe2319f3f23a7c02f8962eafa43ff67
1 file changed
+7
android/app/src/main/AndroidManifestBase.xml
+7
@@ -42,4 +42,11 @@
42
android:name="flutterEmbedding"
43
android:value="2" />
44
</application>
45
+
46
+ <queries>
47
+ <intent>
48
+ <action android:name="android.intent.action.VIEW" />
49
+ <data android:scheme="https" />
50
+ </intent>
51
+ </queries>
52
</manifest>