mirror of
https://github.com/bitwarden/android.git
synced 2024-12-25 18:38:27 +03:00
catch exception when cannot create temp cam file
This commit is contained in:
parent
75f99bf899
commit
45da12ad55
1 changed files with 11 additions and 7 deletions
|
@ -163,15 +163,19 @@ namespace Bit.Android.Services
|
||||||
|
|
||||||
if(!_cameraPermissionsDenied && hasCameraPermission && hasStorageWritePermission)
|
if(!_cameraPermissionsDenied && hasCameraPermission && hasStorageWritePermission)
|
||||||
{
|
{
|
||||||
var root = new Java.IO.File(global::Android.OS.Environment.ExternalStorageDirectory, "bitwarden");
|
try
|
||||||
var file = new Java.IO.File(root, "temp_camera_photo.jpg");
|
|
||||||
if(!file.Exists())
|
|
||||||
{
|
{
|
||||||
file.ParentFile.Mkdirs();
|
var root = new Java.IO.File(global::Android.OS.Environment.ExternalStorageDirectory, "bitwarden");
|
||||||
file.CreateNewFile();
|
var file = new Java.IO.File(root, "temp_camera_photo.jpg");
|
||||||
|
if(!file.Exists())
|
||||||
|
{
|
||||||
|
file.ParentFile.Mkdirs();
|
||||||
|
file.CreateNewFile();
|
||||||
|
}
|
||||||
|
var outputFileUri = global::Android.Net.Uri.FromFile(file);
|
||||||
|
additionalIntents.AddRange(GetCameraIntents(outputFileUri));
|
||||||
}
|
}
|
||||||
var outputFileUri = global::Android.Net.Uri.FromFile(file);
|
catch(Java.IO.IOException) { }
|
||||||
additionalIntents.AddRange(GetCameraIntents(outputFileUri));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if(additionalIntents.Count > 0)
|
if(additionalIntents.Count > 0)
|
||||||
|
|
Loading…
Reference in a new issue