1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-21 10:43:22 +00:00

Add support for camera for android choose file

This commit is contained in:
Kyle Spearrin
2017-07-22 21:06:53 -04:00
parent f9d336a3a6
commit 395545f7b1
14 changed files with 271 additions and 622 deletions

View File

@@ -1,4 +1,5 @@
using System;
using System.Threading.Tasks;
namespace Bit.App.Abstractions
{
@@ -7,7 +8,7 @@ namespace Bit.App.Abstractions
void CopyToClipboard(string text);
bool OpenFile(byte[] fileData, string id, string fileName);
bool CanOpenFile(string fileName);
void SelectFile();
Task SelectFileAsync();
void ClearCache();
}
}