Skip to content

Instantly share code, notes, and snippets.

@seenickcode
Last active November 21, 2021 15:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seenickcode/86ecc23e1ce0ce62d9fcd0fb80d42492 to your computer and use it in GitHub Desktop.
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...
<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