thread.setRequestId(this.requestId);
thread.setShouldGenerateThumbnails(this.generateThumbnails); // need to set this flag to false.
thread.setShouldGenerateMetadata(this.generateMetadata);
thread.setImagePickerCallback(this.callback);
thread.start();
}
how can I set setShouldGenerateThumbnails() flag to false in "ImagePickerImpl" class
private void processImages(List uris) {
ImageProcessorThread thread = new ImageProcessorThread(this.getContext(), this.getImageObjects(uris), this.cacheLocation);
if(this.maxWidth != -1 && this.maxHeight != -1) {
thread.setOutputImageDimensions(this.maxWidth, this.maxHeight);
}
how can I set setShouldGenerateThumbnails() flag to false in "ImagePickerImpl" class