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**.