I have an issue with WKAppBoundDomains and limitsNavigationsToAppBoundDomains. When I try to build iOS app I need to have Azure B2C and request to http on local network. First Azure B2C auth wasn’t working until I added WKAppBoundDomains but with adding that blocked the http requests that are essential feature for this app. Then following capacitor docs I found that is recommended to enable limitsNavigationsToAppBoundDomains to true. Then the http request works but Azure B2C don’t.
I have to make http request it is essential feature and can’t be changed to https.
Auth is working on Web (Safari also) and on Android.
WKAppDomains: not present, limitsNavigationsToAppBoundDomains not present: http is working, azure b2c not working
WKAppDomains: present, limitsNavigationsToAppBoundDomains not present: http is not working, azure b2c is working
WKAppDomains: present, limitsNavigationsToAppBoundDomains present: http is working, azure b2c is not working.
I tried also setting NSAppTransportSecurity in different combos, but it behaves like it doesn’t have any effect to stated behaviour.
I also found this but but it didn’t help. https://github.com/ionic-team/capacitor/issues/6302