I'm building a mobile application with Cordova and Materialize. I'm trying to make the user select multiple files by using a file-field. It works well while trying on a PC browser, but on Android, I can never select more than one file. I tried to do the following lines, but none of them work:
<input type="file" multiple/>
<input type="file" multiple=""/>
<input type="file" multiple="multiple"/>
Is there a way to make that work with Android? I also tried the answer from this question but it popped several errors regarding missing symbols.