MEDIA_TYPE_IMAGE não reconhecido

Estou tendo problemas com o recurso sobre desenvolvedores do Android para a câmera, aqui está o meu código:

// create Intent to take a picture and return control to the calling application
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
fileUri = getOutputMediaFileUri(MEDIA_TYPE_IMAGE);

// create a file to save the image
intent.putExtra(MediaStore.EXTRA_OUTPUT, fileUri); // set the image file name
// start the image capture Intent
startActivityForResult(intent, CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE);

O problema é 'MEDIA_TYPE_IMAGE', que diz que não pode ser resolvido para uma variável. Eu tenho mediastore, câmera e URI importados para o meu projeto. Desde já, obrigado!

questionAnswers(4)

yourAnswerToTheQuestion