Hello @Aryaveer Chaudhary ,
Welcome to Microsoft Q&A!
The phoneLineTransportManagement capability is required to use PhoneLineTransportDevice
APIs in the Windows.ApplicationModel.Calls
namespace.
This capability allows apps to manage system devices responsible for phone line connectivity.
You can try to add phoneLineTransportManagement in Package.appxmanifest
like this.
<Package
...
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
IgnorableNamespaces="uap mp rescap">
...
<Capabilities>
<rescap:Capability Name="phoneLineTransportManagement" />
</Capabilities>
Thank you,
Junjie
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.