5
I am creating a QR code reader on a website and now I need to use this site in a mobile version, for this I am creating a Webview that is opening the site.
In any browser the QR Code reader works, on desktop or mobile. However when I use the webview it does not give permission to use the Android camera.
I’ve entered all permissions and checks I found on the internet but nothing works on any version of Android (I’m using 6.0)
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
I saw an option to insert a Javascript to call the camera in Webview but I could not find how it can be done.
If necessary send the APP code.
Do you use Cordova?
– Marconi