when I using canOpenURL
to open universal link, (target app is installed)
canOpenURL
return true, but app is not opening (LSApplicationQueriesSchemes
are not registered)
but if I use open(_ url, options)
app is opening
If I am responsible for not registering LSApplicationQueriesSchemes
, how do I register Universal's links to LSApplicationQueriesSchemes
? (https://www.aaa.com)
<key>LSApplicationQueriesSchemes</key>
<array>
<string>https://www.aaa.com</string>
</array>
like this?