This code works:
CropImage.activity()
.setGuidelines(CropImageView.Guidelines.ON)
.start(activity);
But this code is not working
CropImage.activity(Uri.parse("/storage/emulated/0/DCIM/Camera/IMG_20171105_163601.jpg"))
.setGuidelines(CropImageView.Guidelines.ON)
.setMinCropResultSize(300, 150)
.setMaxCropResultSize(3000, 1500)
.start(activity);
this works:
CropImage.activity(Uri.parse("file:///storage/emulated/0/DCIM/Camera/IMG_20171105_163601.jpg"))
Most helpful comment
this works:
CropImage.activity(Uri.parse("file:///storage/emulated/0/DCIM/Camera/IMG_20171105_163601.jpg"))