Universal Windows Platform (UWP)
A Microsoft platform for building and publishing apps for Windows desktop devices.
3,009 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
when used this: using Windows.Media.AppRecording;
Minversion of my UWP project is: 18362
I get error message AppRecording not found in namespace Windows.Media! Where am I doing wrong?
Hello,
Welcome to Microsoft Q&A!
AppRecording
is an API namespace in the desktop extension, which is limited to the desktop version of UWP. If you want to use this API, you need to add a desktop SDK extension.
You can add Windows Desktop Extensions for UWP (your sdk version) in your project (You can check this document), after that, you can use the related API.
Thanks.