I am using camera in my app. I am just using intent
to start camera
Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, outputFileUri);
startActivityForResult(cameraIntent, 101);
The captured image automatically comes in landscape view
. How do i make camera
to capture images in portrait view