Hello, I’m new in capacitor. I’m want to use navigator.getUserMedia in my capacitor app for android only and access the microphone through WebView as the PWA does on the android browser.
at the moment I’m getting undefind for navigator.getUserMedia and navigator.mediaDevices.
Is it possible? Any Demo project for that use
I have permissions for camera and audio recording.
Problem solved. I added to capacitor.config.json
"server": {
"hostname": "192.168.0.41:5000",
"iosScheme": "https",
"androidScheme": "https",
"url": "https://192.168.0.41:5000"
With the IP of my mobile phone
Also required permissions:
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
<uses-permission android:name="android.permission.RECORD_VIDEO"/>
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
if you need to use microphone or camera
Thank You @thomasvidas That’s was very helpfull
You can always use this configuration in the capacitor.config.json file
server: {
hostname: 'localhost',
iosScheme: 'https',
androidScheme: 'https'
This will allow app to run on any IP and not on just static IP.
Permission are required depend on your app use.