Skip to content

Instantly share code, notes, and snippets.

View seenickcode's full-sized avatar

Nick Manning seenickcode

View GitHub Profile
@seenickcode
seenickcode / gist:5a846d9ff1ec507bc24a2b31a9cf9daf
Created November 21, 2021 15:45
ios/Runner/Info.plist Deep Linking Example. Add the following as a child to the root level <dict /> node...
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLSchemes</key>
<array>
<string>com.manninglabs.steadycalendar</string>
</array>
</dict>
@seenickcode
seenickcode / gist:86ecc23e1ce0ce62d9fcd0fb80d42492
Last active November 21, 2021 15:41
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" /> -->