Skip to content

Commit 654f4f5

Browse files
committed
feat(auth): configure android deep link for supabase oauth
1 parent 7c734b2 commit 654f4f5

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

src/android/app/src/main/AndroidManifest.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@
1616
the Android process has started. This theme is visible to the user
1717
while the Flutter UI initializes. After that, this theme continues
1818
to determine the Window background behind the Flutter UI. -->
19+
<intent-filter>
20+
<action android:name="android.intent.action.VIEW" />
21+
<category android:name="android.intent.category.DEFAULT" />
22+
<category android:name="android.intent.category.BROWSABLE" />
23+
<data
24+
android:scheme="taskapp"
25+
android:host="login-callback" />
26+
</intent-filter>
1927
<meta-data
2028
android:name="io.flutter.embedding.android.NormalTheme"
2129
android:resource="@style/NormalTheme"

src/lib/features/auth/presentation/view/auth_gate.dart

Whitespace-only changes.

0 commit comments

Comments
 (0)