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
We have added Auth0.swift, JWTDecode.swift, and SimpleKeychain as submodules to our project. However since the Auth0 framework does not explicitly link JWTDecode.swift and SimpleKeychain build errors result on clean builds, as Auth0 may attempt to build before JWTDecode.swift and SimpleKeychain have.
Describe the ideal solution
We have forked Auth0 and made these dependencies explicit in Auth0 framework targets, by adding both JWTDecode and SimpleKeychain to "Link Binary With Libraries":
This makes the dependency explicit, and ensures that JWTDecode and SimpleKeychain are built before Auth0.
Alternatives and current workarounds
We attempted to resolve this by simply moving JWTDecode to higher in our dependency list, but because Xcode builds things in parallel this wasn't enough to make sure JWTDecode was built before Auth0.
Additional context
No response
The text was updated successfully, but these errors were encountered:
Checklist
Describe the problem you'd like to have solved
We have added Auth0.swift, JWTDecode.swift, and SimpleKeychain as submodules to our project. However since the Auth0 framework does not explicitly link JWTDecode.swift and SimpleKeychain build errors result on clean builds, as Auth0 may attempt to build before JWTDecode.swift and SimpleKeychain have.
Describe the ideal solution
We have forked Auth0 and made these dependencies explicit in Auth0 framework targets, by adding both JWTDecode and SimpleKeychain to "Link Binary With Libraries":
This makes the dependency explicit, and ensures that JWTDecode and SimpleKeychain are built before Auth0.
Alternatives and current workarounds
We attempted to resolve this by simply moving JWTDecode to higher in our dependency list, but because Xcode builds things in parallel this wasn't enough to make sure JWTDecode was built before Auth0.
Additional context
No response
The text was updated successfully, but these errors were encountered: