I\'m facing a problem with parsing a uri of taken photo to crop activity. In my application, users can take a photo or select one from gallery and then crop it and upload it. Ev
I had intent.setType("image/*"); and it still didn't work...
intent.setType("image/*");
What solved it for me was using: intent.setDataAndType(tempImageURI, "image/*");
intent.setDataAndType(tempImageURI, "image/*");
Good luck!