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;