Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UWP app cannot be found in Windows privacy settings

I have built an Universal Windows Platform (UWP) application in C# using Visual Studio 2017 Community (Version 15.4.2). My Operating System is Windows 10.

The app is supposed to use my local machine's microphone (in this case, my laptop's built-in microphone) to perform speech recognition.

The first thing I need to do is to let my app to be allowed to use the microphone. However, I can't find my newly created app in the list of apps in the privacy settings page.

enter image description here


However, if I use the sample projects downloaded from Microsoft website, it does show up in the list of apps:

enter image description here

My Question: What do I need to let my app appear in the list of apps under the privacy settings page?

like image 397
user3437460 Avatar asked Dec 10 '25 11:12

user3437460


1 Answers

Thanks to user JanMer. To let Windows know your app needs to access the Microphone:

  • Goto Solution explorer
  • Double click Package.appxmanifest
  • Click "Capabilities" Tab
  • From the list of checkboxes, check "Microphone"

Run the app again, and revisit the privacy page. Now your app will show up in the list.

enter image description here enter image description here

like image 161
user3437460 Avatar answered Dec 12 '25 04:12

user3437460