QML WebView access camera and microphone
-
@Marek
just a quick guess: Did you enabled the correct permissions to your app for mic and camera usage? -
Hi
I have this in AndroidManifest<!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application. Remove the comment if you do not require these default permissions. --> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <!-- The following comment will be replaced upon deployment with default features based on the dependencies of the application. Remove the comment if you do not require these default features. --> <uses-feature android:glEsVersion="0x00020000" android:required="true" /> <uses-permission android:name="android.permission.CAMERA"/> <uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.RECORD_AUDIO"/> <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
Paragraph at the bottom are permisstions added in Qt Creator.
I wonder maybe this is somehow Android version issue I have 4.2.2 -
@Marek
yes -
So, anything more about WebView, is it really a wrapper around native web engine (for Android android.webkit.WebView) ?
And since native webengine allows the use of camera and mic, then it should be possible to persuade QML WebView to allow camera and mic ? -
@raven-worx , i have same issue with ios , can you guide for same in ios , thanks in advance.
-
@Deepak_Patel
no sry, my experience with iOS is almost zero. -
@Deepak_Patel I think it is impossible on iOS. Qt WebView is based on WkWebView
https://forums.developer.apple.com/thread/88052 -
@raven-worx thanks for reply.