This probably happens on multiple selection on android. You can fix this by listing all your cordova plugins (that you added) $ ionic cordova plugin list
Than remove plugins, all including the imagePicker.
Example: $ ionic cordova plugin remove cordova-plugin-telerik-imagepicker
Than remove android platform $ ionic cordova platform remove android
and add it again ionic cordova platform add android
I had a similar issue and that’s how i fixed it.
PS: im not sure if you need to remove all plugins or just the imagePicker, but i did it anyway
You’re not going to like this one, but my suggestion is “use Camera and forget ImagePicker exists”. I had similar experiences with ImagePicker and chose to give up on it.
Yeah, it’s work. But it shows only the first index of the image. Do you have a solution to show all images after browse or after choosing an image?
Thank you for your help and reply back