I have the following configuration in my build.settings
settings = { iphone = plist = { CFBundleURLTypes = { { CFBundleURLSchemes = { "myAppScheme" } } } } } }
If I type “myAppScheme://” in the url of the iOS mobile safari, it will now prompt me to confirm if I should open the app or not. If yes, it can open my app successfully.
I would like to see how to open the app without the prompt. And I found there is something called “Universal Link” which should have the same function but without the prompt. However, I can’t find any related documentation in the Corona SDK on how to implement this. Can someone direct me to the right place or let me know how to do it?
Thanks!