We use ASWebAuthenticationSession to authenticate users in our app, and we so far relied on an associated domain (universal link) for the last redirection step (callback), instead of a custom scheme, for security reasons.
It works fine on iOS <= 15.4.1 (current release at time of writing), but we noticed that the associated domain is no longer detected during the callback on iOS 15.5 (beta 4).
As a result, the user ends up on our web app within the ASWebAuthenticationSession view, and the app authentication never finishes.
Is anybody experiencing the same issue?
Thanks.