Hi. In my app, the login screen doesn't close automatically after a successfully login. I have already setup AndroidManifest.xml as below:
<intent-filter android:label="flutter_web_auth_2">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="appwrite-callback-63f..............0" />
</intent-filter>
</activity>```
Project ID is correct. After user login with google, the webview shows "Missing Redirect URL"... and then it shows the login page again. Despite of that, the app continues the execution of code after the first login.
The account and session are successfully created in the server, but the webview remains open. I can run `Account(client).get()` after that. The only issue is that the page "Missing Redirect URL" appears instead of the webview closing and returning to the application.
I have the server version 1.2.1 and flutter version 8.2.2. I've tried changing the plugin version in flutter down until 8.0.0, but the error still persists.