I have an app with a custom URL scheme set up, and I added the URL to the LSApplicationQueriesSchemes array in the Info.plist.
If I go straight into Safari on the device or simulator and hit myapp:// then the app will open up. However, I have an externally hosted website with a servlet that calls response.redirect("myapp://") and when this is called, the app does not open.
The servlet redirect works in iOS 9 and below. What changed in iOS 10 so that this call no longer works?
It's odd that if I type in the URL by hand into Safari on the device, it works fine. But going to my website in Safari on the device and clicking the button which calls the response.redirect does not work. I am completely flummoxed by this.