I'm trying to develop a tab for Microsoft Teams which needs to access the microphone. According to the documentation
I need to add this property to the manifest.json:
"devicePermissions": [
"media",
],
When i open my tab, i can see this message:
The problem is I also need to use my application in a different window
But, when i select that option and have my app running in a different window, i can't see the message to allow that permission and my tab can't use the microphone
I also try to grant that permission before open my app in a different window, but it doesn't work neither.
What could i do in this case?