-
Notifications
You must be signed in to change notification settings - Fork 232
Open
Labels
bugThis points to a verified bug in the codeThis points to a verified bug in the code
Description
Checklist
- The issue can be reproduced in the react-native-auth0 sample app (or N/A).
- I have looked into the Readme, Examples, and FAQ and have not found a suitable solution or answer.
- I have looked into the API documentation and have not found a suitable solution or answer.
- I have searched the issues and have not found a suitable solution or answer.
- I have searched the Auth0 Community forums and have not found a suitable solution or answer.
- I agree to the terms within the Auth0 Code of Conduct.
Description
I'm running an expo build after migrating to XCode 26.4 and run into issues building the auth0 library.
On both Expo 54 and Expo 55 I see the following error:
❌ (../../node_modules/react-native-auth0/ios/NativeBridge.swift:474:19)
472 | case .pkceNotAllowed: code = "PKCE_NOT_ALLOWED"
473 | case .idTokenValidationFailed: code = "ID_TOKEN_VALIDATION_FAILED"
> 474 | case .other: if let cause = self.cause as? AuthenticationError {
| ^ ambiguous use of 'other'
475 | code = cause.code
476 | } else {
477 | code = "OTHER"
❌ (../../node_modules/react-native-auth0/ios/NativeBridge.swift:493:19)
491 | case .cryptoKitOperationFailed: code = NativeBridge.dpopProofFailedCode
492 | case .secKeyOperationFailed: code = NativeBridge.dpopProofFailedCode
> 493 | case .other: code = NativeBridge.dpopErrorCode
| ^ ambiguous use of 'other'
494 | case .unknown: code = NativeBridge.dpopErrorCode
495 | default:
496 | code = NativeBridge.dpopErrorCode
❌ (../../node_modules/react-native-auth0/ios/NativeBridge.swift:494:19)
492 | case .secKeyOperationFailed: code = NativeBridge.dpopProofFailedCode
493 | case .other: code = NativeBridge.dpopErrorCode
> 494 | case .unknown: code = NativeBridge.dpopErrorCode
| ^ ambiguous use of 'unknown'
495 | default:
496 | code = NativeBridge.dpopErrorCode
497 | }
Reproduction
- Create an Expo 54 or Expo 55 app with a developer build
- Add auth0 and do a prebuild
- Run the iOS build
Additional context
No response
react-native-auth0 version
5.4.0
React Native version
0.81.5 & 0.83.2
Expo version
54 & 55
Platform
iOS
Platform version(s)
26.4
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugThis points to a verified bug in the codeThis points to a verified bug in the code