In iOS9, what is the recommend way to whitelist applications using LSApplicationQueriesSchemes? It doesn't seem possible to specifiy URLs with embedded parameters. For a URL that contains parameters, how is it possible to specify the specific URL in LSApplicationsQueriesSchemes and the openURL using parameters?
For example, assume I have an email app that passes the the senders email address as a parameter:
myapp://com.my.company/mailto?bob@gmail.com
How can parameters be specified using LSApplicationQueriesSchemes whitelist and/or openURL?
The only way it seems to get it to work in iOS9 is to totally remove any parameters.
Any guidance would be appreched.
Dave