I am using the imagePicker plugin (link to plugin ) to choose multiple images at once and then upload them on the server, the problem is that the plugin shows all the images available on the device without grouping them : (downloads, whatsapp, …). on ios it works perfectly :
I am using this code to get images :
ImagePicker.getPictures({quality : 80, maximumImagesCount : 10}).then((results) => {
for (var i = 0; i < results.length; i++) {
console.log('Image URI: ’ + results[i]);
}
}, (err) => { });
why on ios the plugin shows images grouped by Albums and on android shows all images at once ordered by date ?