Fix camera issue when taking picture for contact on XPeria device (mantis issue 3204)

This commit is contained in:
Sylvain Berfini 2016-07-20 12:12:21 +02:00
parent 59b0121b7f
commit ec33a1366b

View file

@ -331,7 +331,6 @@ public class ContactEditorFragment extends Fragment {
final Intent captureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
File file = new File(Environment.getExternalStorageDirectory(), getString(R.string.temp_photo_name));
pickedPhotoForContactUri = Uri.fromFile(file);
captureIntent.putExtra("crop", "true");
captureIntent.putExtra("outputX", PHOTO_SIZE);
captureIntent.putExtra("outputY", PHOTO_SIZE);
captureIntent.putExtra("aspectX", 0);