-
Notifications
You must be signed in to change notification settings - Fork 904
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Breaking change to Ionic WebView breaks auth on Cordova 8 + Ionic #1244
Comments
Have you checked if your app allows navigation to URLs with Try adding the following entry to your
This solution worked for a possibly related issue: https://stackoverflow.com/a/53566771/2779681 |
Partially is not enough anyway |
Any solution? |
Starting from April 2020 (this month!), Apple will no longer accept hybrid apps that do not use WKWebView. |
[REQUIRED] Describe your environment
[REQUIRED] Describe the problem
Steps to reproduce:
It appears that Ionic Webview has changed and it's not possible to use
signInWithRedirect
on Android as it's now serving content from an integrated http server, athttp://localhost:8080
instead of usingfile://
as previously. This seems to break the login flow.More info are available at https://github.com/ionic-team/cordova-plugin-ionic-webview
How can I force Firebase Auth to detect my Cordova setup?
Relevant Code:
I have implemented the auth in the simplest way:
And after a successful login, the OAuth handler redirects to
http://localhost:8080
which is an empty page, instead of flowing back to the app.The text was updated successfully, but these errors were encountered: