You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.
Hello, first, thanks for the project! It is great, helping a lot with porting my web app to native.
So, my problem is that I am still getting a permission error for audio recording, even after uncommenting the relevant permissions on AndroidManifest.xlm
I added all these permissions for audio recording the user's voice: <uses-permission android:name="android.permission.RECORD_AUDIO" /> <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> <uses-permission android:name="android.permission.WAKE_LOCK" />
But I still get a permission error running on Android Studio:
W/cr_media: Requires MODIFY_AUDIO_SETTINGS and RECORD_AUDIO. No audio device will be available for recording
I am using HTML5 navigator.mediaDevices.getUserMedia({ audio: true }) to record the audio
The text was updated successfully, but these errors were encountered:
@clsource an update: if I manually give permission to the application to use the microphone, that error goes away, but I get another one: a DOMException for Permission Denied.
Does it create an <iframe> inside the WebView? If it does, I would still have to add allow="camera; microphone" to the <iframe> tag. How would I do it?
@rodrigohgpontes Hi Rodrigo! Did you ever find a fix to this? Would you mind posting your process for this as I would love to use the microphone for audio calls using Twilio!
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello, first, thanks for the project! It is great, helping a lot with porting my web app to native.
So, my problem is that I am still getting a permission error for audio recording, even after uncommenting the relevant permissions on
AndroidManifest.xlm
I added all these permissions for audio recording the user's voice:
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
But I still get a permission error running on Android Studio:
I am using HTML5
navigator.mediaDevices.getUserMedia({ audio: true })
to record the audioThe text was updated successfully, but these errors were encountered: