I'm developing a facebook chatbot that sends template message to users.
The template uses facebook messenger SDK and opens a webview of my react app website, and the website has <input type="file" />
in it.
When I clicked the Choose File
button and then select an image file, the input didn't show the selected file and the onChange
event was not called.
<input
onChange={handleOnChange}
type="file"
accept="image/png, .jpeg, .jpg, image/gif"
capture={false}
/>
The problem only happens in some of android phones. :(