[Solved] webview app permission for capturing images using camera and uploading images from gallery


Add in Manifest.xml:

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

For android versions higher than M you have to ask for permissions, I’m referring to this question:

Link

solved webview app permission for capturing images using camera and uploading images from gallery