File Upload Not Working In Android 4.4.2
I have created an app using phonegap. The app works fine on all android versions. But the file upload feature on this app does not work on Android 4.4.2. I have googled a lot on th
Solution 1:
There's no chance to get file uploads working in a WebView
on Android 4.4.2.
Nevertheless, the onclick
or onchange
events are still fired on the <input type="html">
element.
This means you can either get the file there via JavaScript or call a Java method from those event handlers and do the file upload manually.
For Cordova, there's an issue here:
https://issues.apache.org/jira/browse/CB-5294
... and a workaround here:
Post a Comment for "File Upload Not Working In Android 4.4.2"