Last active
November 21, 2021 15:41
-
-
Save seenickcode/86ecc23e1ce0ce62d9fcd0fb80d42492 to your computer and use it in GitHub Desktop.
android/app/src/main/AndroidManifest.xml Flutter Deep Linking Example. Replace the default <intent-filter /> you see with...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<meta-data android:name="flutter_deeplinking_enabled" android:value="true" /> | |
<intent-filter android:autoVerify="true"> | |
<action android:name="android.intent.action.MAIN"/> | |
<category android:name="android.intent.category.LAUNCHER"/> | |
<action android:name="android.intent.action.VIEW" /> | |
<category android:name="android.intent.category.DEFAULT" /> | |
<category android:name="android.intent.category.BROWSABLE" /> | |
<!-- NOTE disabled as we had been using a webview to authenticate. can be removed --> | |
<!-- <data android:scheme="https" android:host="https://kxxmtphzwtnncgxqdnhm.supabase.co/auth/v1/callback" /> --> | |
<!-- <data android:scheme="https" /> --> | |
<data android:scheme="com.manninglabs.steadycalendar" android:host="login-callback" /> | |
</intent-filter> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment