I am able to upload png/jpg files from gallery but when i select pdf file nothing is happening.I am using below code to select file from gallery.
var options = {
quality: 50,
destinationType: Camera.DestinationType.FILE_URI,
sourceType: 0, // 0:Photo Library, 1=Camera, 2=Saved Photo Album
// encodingType: 0 , // 0=JPG 1=PNG
correctOrientation: true
}
navigator.camera.getPicture(onSuccess,onCancel,options);
How can i check the selected file size.