From ad2b07dfcfe95520799306e850036786960aa37a Mon Sep 17 00:00:00 2001 From: ashar-aala <79859140+ashar-aala@users.noreply.github.com> Date: Tue, 15 Jul 2025 04:13:08 +0500 Subject: [PATCH] Updated custom scheme name for flutter user --- .../docs/developer-tools/sdks/native/flutter-sdk.mdx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/content/docs/developer-tools/sdks/native/flutter-sdk.mdx b/src/content/docs/developer-tools/sdks/native/flutter-sdk.mdx index eb9eab9e6..7dfd93c71 100644 --- a/src/content/docs/developer-tools/sdks/native/flutter-sdk.mdx +++ b/src/content/docs/developer-tools/sdks/native/flutter-sdk.mdx @@ -83,8 +83,8 @@ KINDE_AUDIENCE= ```bash KINDE_AUTH_DOMAIN=https://myapp.kinde.com KINDE_AUTH_CLIENT_ID=clientid -KINDE_LOGIN_REDIRECT_URI=com.kinde.myapp://kinde_callback -KINDE_LOGOUT_REDIRECT_URI=com.kinde.myapp://kinde_logoutcallback +KINDE_LOGIN_REDIRECT_URI=myapp://kinde_callback +KINDE_LOGOUT_REDIRECT_URI=myapp://kinde_logoutcallback KINDE_AUDIENCE=myapp.kinde.com/api ``` @@ -124,13 +124,13 @@ Specify the custom scheme similar to the following but replace `Editor CFBundleURLSchemes - + :// ``` -**Note:** `` has been defined previously as [`com.kinde.app`](http://com.kinde.app/) You can define your own custom scheme to correspond to the package name. +**Note:** `` has been defined previously as [`myapp`](http://com.kinde.app/) You can define your own custom scheme to correspond to the app name. ## Set callback URLs @@ -146,8 +146,8 @@ Replace the values you see in `` with your own values. - Allowed logout redirect URLs: `://kinde_logoutcallback` ```dart - loginRedirectUri: com.kinde.myapp://kinde_callback, - logoutRedirectUri: com.kinde.myapp://kinde_logoutcallback, + loginRedirectUri: myapp://kinde_callback, + logoutRedirectUri: myapp://kinde_logoutcallback, ``` 5. Select **Save**.