Я хочу открыть камеру и сделать снимок с нее, чтобы загрузить ее на сервер.Но каждый раз, когда я пытаюсь открыть камеру, происходит сбой приложения, показывая вышеупомянутую ошибку, я пробовал несколько решений, но ни одно из них не работает для меня.Мой код выглядит следующим образом:
Имя моего пакета
lc.android.gauge
И идентификатор приложения
com.test.gauge
После предоставления разрешений я вызываю этот метод
private void dispatchTakePictureIntent() {
Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
// Ensure that there's a camera activity to handle the intent
if (takePictureIntent.resolveActivity(getPackageManager()) != null) {
// Create the File where the photo should go
File photoFile = null;
try {
photoFile = createImageFile();
} catch (IOException ex) {
// Error occurred while creating the File
}
// Continue only if the File was successfully created
try {
if (photoFile != null) {
Uri photoURI = FileProvider.getUriForFile(this,
"com.test.gauge.fileprovider",
file);
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, photoURI);
startActivityForResult(takePictureIntent, 0);
}
} catch (Exception e) {
Log.e("imageException", e.toString());
}
}
}
В этой строке происходит сбой приложения в указанном выше методе
Uri photoURI = FileProvider.getUriForFile(this,"com.test.gauge.fileprovider",file);
createImageFile () метод
private File createImageFile() throws IOException {
// Create an image file name
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
String imageFileName = "JPEG_" + timeStamp + "_";
File storageDir = getExternalFilesDir(Environment.DIRECTORY_PICTURES);
File image = File.createTempFile(
imageFileName, /* prefix */
".jpg", /* suffix */
storageDir /* directory */
);
// Save a file: path for use with ACTION_VIEW intents
mCurrentPhotoPath = image.getAbsolutePath();
return image;
}
Тег внутри манифеста
<uses-feature
android:name="android.hardware.camera"
android:required="true" />
Тег внутри приложения
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="lc.android.gauge.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
file_paths xml
<paths>
<external-files-path
name="my_images"
path="Android/data/com.test.gauge/files/Pictures" />