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
feat(android): expose allowedBrowsers option for web authentication
Adds an allowedBrowsers option to NativeAuthorizeOptions that restricts
which browsers can handle the web authentication flow on Android. This
works around a known issue with Firefox where App Link redirects are not
correctly handled, causing login flows to fail.
The underlying Auth0.Android SDK supports browser filtering via
BrowserPicker and CustomTabsOptions. This change exposes that capability
through the React Native bridge.
When set, the behaviour is:
- Default browser in the list → use it
- Default browser not in the list, another allowed browser installed → use that
- No allowed browser installed → a0.browser_not_available error
This brings parity with the auth0-flutter SDK which already exposes this
option (see auth0/auth0-flutter#392).
Ref: https://bugzilla.mozilla.org/show_bug.cgi?id=1976809
0 commit comments