I use input as following to open camera from smartphone.
<input
onChange=“hoge”
type=“file”
accept=“image/*”
capture=“camera”
/>
my website is opened in WebView of some apps and when camera setting is off for those apps and tapping the input above, camera shows up but shows nothing. I want to tell the use to turn the setting of camera permission to ON, but could not find out how to detect it.
Can someone tell me how to detect camera is off when tapping the input?