Hello,
Opening another application depends to two requirements: the first is whether you have the application installed in the device, and the second is whether the LSApplicationQueriesSchemes
is correct. You can double check that LSApplicationQueriesSchemes
is of type Array
and that the string " comgooglemaps
" exists in it.
Or you can open info.plist
with source code, and check
<key>LSApplicationQueriesSchemes</key>
<array>
<string>comgooglemaps</string>
</array>
After that, you can run UIApplication.SharedApplication.CanOpenUrl(new NSUrl("comgooglemaps://"))
If you have any other issues, please feel free to let me know.
Best Regards,
Wenyan Zhang
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.