You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when creating a new flutter app, the default template puts android:taskAffinity="" in android\app\src\main\AndroidManifest.xml and that makes registering a user through social login (e.g. google) not work correctly. basically the account is registered successfully in logto but logto doesn't redirect to the app, instead loops back to the google sign up screen:
(here the user is correctly registered in logto but then logto redirects to the google sign up confirmation again)
removing android:taskAffinity="" fixes the issue
The text was updated successfully, but these errors were encountered:
when creating a new flutter app, the default template puts
android:taskAffinity=""
inandroid\app\src\main\AndroidManifest.xml
and that makes registering a user through social login (e.g. google) not work correctly. basically the account is registered successfully in logto but logto doesn't redirect to the app, instead loops back to the google sign up screen:(here the user is correctly registered in logto but then logto redirects to the google sign up confirmation again)
removing
android:taskAffinity=""
fixes the issueThe text was updated successfully, but these errors were encountered: