Problem: I am fetching image from gallery and after that cropped that image and its working perfect in all device. But it is giving me error while
I have resolved my problem.
What i have do,
I have just change this from
intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
intent.addCategory(Intent.CATEGORY_OPENABLE);
intent.setType("*/*");
startActivityForResult(Intent.createChooser(intent, "Complete action using"), PICK_FROM_FILE);
to
intent = new Intent(Intent.ACTION_PICK);
intent.setType("*/*");
intent.putExtra(android.provider.MediaStore.EXTRA_OUTPUT,
mImageCaptureUri);
startActivityForResult(Intent.createChooser(intent,"Complete action using"), PICK_FROM_FILE);
Working like charm.
Thanks Everyone.