Permission errors when cropping after taking a photo
- by CGM
Hello everybody,
I want to take a photo with an Intent on android.provider.MediaStore.ACTION_IMAGE_CAPTURE,
next crop the result with:
Intent intent = new Intent("com.android.camera.action.CROP");
intent.setClassName("com.android.camera", "com.android.camera.CropImage");
I follow the sugestions made at:
Android: Crop an Image after Taking it…