In my application I have added feature of image uploading,It works fine with all the Images except camera image,whenever I browse camera image from gallery and portrait imag
String filePath = getRealPathFromURI(getActivity(), selectedImageUri ); messageText.setText(filePath ); Picasso.with(getActivity()) .load(new File(filePath )) .centerCrop() .resize(60, 60).into( img);