Camera plugin issue about photolibrary

I’m having an issue about select photolibrary from android OS, it will caused me same images but it’s works for IOS. Please help me on this, i’m keep stucked on this. Below is my option for

options = {
quality: 50,
destinationType: Camera.DestinationType.FILE_URI,
sourceType: Camera.PictureSourceType.PHOTOLIBRARY,
encodingType: Camera.EncodingType.JPEG,
allowEdit: true,
correctOrientation:true
};

$cordovaCamera.getPicture(options).then(function(imageData) {
newImg = imageData;
}

$scope[imageHolder] = newImg;

What exactly is the problem? Your sentence doesn’t really explain what happens that you don’t expect.

The problem is when i select photo from gallery in android, it return me the picture i selected in previous. Currently, i have 3 placeholder allow user to upload their photo from gallery,but when i select picture 1 is ok but it’s duplicated for picture 2.

Ok, so you want to select 3 pictures, the first one works but on second and third you get back the same picture as the first?

If so, please post a complete overview of the relevant code. View, Controller, anything that is relevant to understand exactly what you are doing. (Also please format the code a bit so it is readable).