Not all Apple app URL Schemes working on iOS 16

I'm building an iOS app and not all of the URL schemes are working for directing users from my app into native Apple applications. I'm using this list for guidance on relevant URL schemes, https://medium.com/@contact.jmeyers/complete-list-of-ios-url-schemes-for-apple-apps-and-services-always-updated-800c64f450f. I suspect it might not be 100% correct anymore, but I can't find a source of truth in Apple's documentation for all currently supported URL schemes.

I'm trying to guide users from my app into both Voicemail (within Phone) and Voice Memos. I've added the URL schemes for both apps to the LSApplicationQueriesSchemes array in my Info.plist file, but they won't navigate when I try to open URLs to "vmshow://" or "voicememos://".

Other URL schemes like tel / telprompt / music / message / podcast / mobilenotes all work as expected and direct my app users to the respective Apple apps. So far I've noticed at least 4 URL schemes that do not work from within my app, mobilephone (and its subtypes) / vmshow / voicememos / calc.

<key>LSApplicationQueriesSchemes</key>
    <array>
        <!-- work -->
        <string>tel</string> 
        <string>telprompt</string> 
        <string>message</string>
        <string>music</string>
        <string>photos-redirect</string>
        <!-- don't work -->
        <string>mobilephone</string>
        <string>mobilephone-recents</string>
        <string>vmshow</string>
        <string>voicememos</string>
        <string>calc</string>
    </array>

Is there further configuration needed to support the non-working schemes from my Info.plist?

I'm not sure if this is an issue related to iOS 16, but I'm building the app to my iPhone 12 Pro which is running iOS 16.1.2.

Just some feedback, it would be very helpful if the currently supported URL schemes were easily accessible through the Developer documentation.

Thanks,

Dan

Not all Apple app URL Schemes working on iOS 16
 
 
Q