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

@ -18,6 +18,7 @@ using Bit.App;
using Android.Nfc;
using Android.Views.InputMethods;
using System.IO;
using System.Linq;
namespace Bit.Android
{
@ -211,8 +212,18 @@ namespace Bit.Android
ParseYubiKey(intent.DataString);
}
public override void OnRequestPermissionsResult(int requestCode, string[] permissions, Permission[] grantResults)
public async override void OnRequestPermissionsResult(int requestCode, string[] permissions, Permission[] grantResults)
{
if(requestCode == Constants.SelectFilePermissionRequestCode)
{
if(grantResults.Any(r => r != Permission.Granted))
{
MessagingCenter.Send(Xamarin.Forms.Application.Current, "SelectFileCameraPermissionDenied");
}
await _deviceActionService.SelectFileAsync();
return;
}
ZXing.Net.Mobile.Forms.Android.PermissionsHandler.OnRequestPermissionsResult(requestCode, permissions, grantResults);
}
@ -221,16 +232,32 @@ namespace Bit.Android
if(requestCode == Constants.SelectFileRequestCode && resultCode == Result.Ok)
{
global::Android.Net.Uri uri = null;
if(data != null)
string fileName = null;
if(data != null && data.Data != null)
{
uri = data.Data;
using(var stream = ContentResolver.OpenInputStream(uri))
using(var memoryStream = new MemoryStream())
{
stream.CopyTo(memoryStream);
MessagingCenter.Send(Xamarin.Forms.Application.Current, "SelectFileResult",
new Tuple<byte[], string>(memoryStream.ToArray(), Utilities.GetFileName(ApplicationContext, uri)));
}
fileName = Utilities.GetFileName(ApplicationContext, uri);
}
else
{
// camera
var root = new Java.IO.File(global::Android.OS.Environment.ExternalStorageDirectory, "bitwarden");
var file = new Java.IO.File(root, "temp_camera_photo.jpg");
uri = global::Android.Net.Uri.FromFile(file);
fileName = $"photo_{DateTime.UtcNow.ToString("yyyyMMddHHmmss")}.jpg";
}
if(uri == null)
{
return;
}
using(var stream = ContentResolver.OpenInputStream(uri))
using(var memoryStream = new MemoryStream())
{
stream.CopyTo(memoryStream);
MessagingCenter.Send(Xamarin.Forms.Application.Current, "SelectFileResult",
new Tuple<byte[], string>(memoryStream.ToArray(), fileName ?? "unknown_file_name"));
}
}
}

View File

@ -5,6 +5,7 @@
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.NFC" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
<uses-permission android:name="com.samsung.android.providers.context.permission.WRITE_USE_APP_FEATURE_SURVEY" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />

View File

@ -7,14 +7,24 @@ using Plugin.CurrentActivity;
using System.IO;
using Android.Support.V4.Content;
using Bit.App;
using Bit.App.Resources;
using Android.Provider;
using System.Threading.Tasks;
using Android.OS;
using System.Collections.Generic;
using Android;
using Android.Content.PM;
using Android.Support.V4.App;
namespace Bit.Android.Services
{
public class DeviceActionService : IDeviceActionService
{
private readonly IAppSettingsService _appSettingsService;
private bool _cameraPermissionsDenied;
public DeviceActionService(IAppSettingsService appSettingsService)
public DeviceActionService(
IAppSettingsService appSettingsService)
{
_appSettingsService = appSettingsService;
}
@ -124,12 +134,86 @@ namespace Bit.Android.Services
}
}
public void SelectFile()
public Task SelectFileAsync()
{
var intent = new Intent(Intent.ActionOpenDocument);
intent.AddCategory(Intent.CategoryOpenable);
intent.SetType("*/*");
CrossCurrentActivity.Current.Activity.StartActivityForResult(intent, Constants.SelectFileRequestCode);
MessagingCenter.Unsubscribe<Application>(Application.Current, "SelectFileCameraPermissionDenied");
var hasStorageWritePermission = !_cameraPermissionsDenied && HasPermission(Manifest.Permission.WriteExternalStorage);
var hasCameraPermission = !_cameraPermissionsDenied && HasPermission(Manifest.Permission.Camera);
if(!_cameraPermissionsDenied && !hasStorageWritePermission)
{
AskCameraPermission(Manifest.Permission.WriteExternalStorage);
return Task.FromResult(0);
}
if(!_cameraPermissionsDenied && !hasCameraPermission)
{
AskCameraPermission(Manifest.Permission.Camera);
return Task.FromResult(0);
}
var docIntent = new Intent(Intent.ActionOpenDocument);
docIntent.AddCategory(Intent.CategoryOpenable);
docIntent.SetType("*/*");
var chooserIntent = Intent.CreateChooser(docIntent, AppResources.FileSource);
if(!_cameraPermissionsDenied && hasCameraPermission && hasStorageWritePermission)
{
var root = new Java.IO.File(global::Android.OS.Environment.ExternalStorageDirectory, "bitwarden");
var file = new Java.IO.File(root, "temp_camera_photo.jpg");
if(!file.Exists())
{
var a = file.ParentFile.Mkdirs();
var b = file.CreateNewFile();
}
var outputFileUri = global::Android.Net.Uri.FromFile(file);
var additionalIntents = GetCameraIntents(outputFileUri);
chooserIntent.PutExtra(Intent.ExtraInitialIntents, additionalIntents.ToArray());
}
CrossCurrentActivity.Current.Activity.StartActivityForResult(chooserIntent, Constants.SelectFileRequestCode);
return Task.FromResult(0);
}
private List<IParcelable> GetCameraIntents(global::Android.Net.Uri outputUri)
{
var intents = new List<IParcelable>();
var pm = CrossCurrentActivity.Current.Activity.PackageManager;
var captureIntent = new Intent(MediaStore.ActionImageCapture);
var listCam = pm.QueryIntentActivities(captureIntent, 0);
foreach(var res in listCam)
{
var packageName = res.ActivityInfo.PackageName;
var intent = new Intent(captureIntent);
intent.SetComponent(new ComponentName(packageName, res.ActivityInfo.Name));
intent.SetPackage(packageName);
intent.PutExtra(MediaStore.ExtraOutput, outputUri);
intents.Add(intent);
}
return intents;
}
private bool HasPermission(string permission)
{
return ContextCompat.CheckSelfPermission(CrossCurrentActivity.Current.Activity, permission) == Permission.Granted;
}
private void AskCameraPermission(string permission)
{
MessagingCenter.Subscribe<Application>(Application.Current, "SelectFileCameraPermissionDenied", (sender) =>
{
_cameraPermissionsDenied = true;
});
AskPermission(permission);
}
private void AskPermission(string permission)
{
ActivityCompat.RequestPermissions(CrossCurrentActivity.Current.Activity, new string[] { permission },
Constants.SelectFilePermissionRequestCode);
}
}
}

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();
}
}

View File

@ -35,5 +35,6 @@
public const string LastSync = "other:lastSync";
public const int SelectFileRequestCode = 42;
public const int SelectFilePermissionRequestCode = 43;
}
}

View File

@ -55,7 +55,7 @@ namespace Bit.App.Pages
var selectButton = new ExtendedButton
{
Text = AppResources.ChooseFile,
Command = new Command(() => _deviceActiveService.SelectFile()),
Command = new Command(async () => await _deviceActiveService.SelectFileAsync()),
Style = (Style)Application.Current.Resources["btn-primaryAccent"],
FontSize = Device.GetNamedSize(NamedSize.Medium, typeof(Button))
};

View File

@ -1051,6 +1051,15 @@ namespace Bit.App.Resources {
}
}
/// <summary>
/// Looks up a localized string similar to File Source.
/// </summary>
public static string FileSource {
get {
return ResourceManager.GetString("FileSource", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Fingerprint.
/// </summary>

View File

@ -983,4 +983,7 @@
<data name="NoAttachments" xml:space="preserve">
<value>There are no attachments.</value>
</data>
<data name="FileSource" xml:space="preserve">
<value>File Source</value>
</data>
</root>

BIN
src/iOS/Resources/photo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 434 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 685 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -8,6 +8,7 @@ using Bit.App.Resources;
using Xamarin.Forms;
using Photos;
using System.Net;
using System.Threading.Tasks;
namespace Bit.iOS.Services
{
@ -89,12 +90,12 @@ namespace Bit.iOS.Services
return tmp;
}
public void SelectFile()
public Task SelectFileAsync()
{
var controller = GetVisibleViewController();
var picker = new UIDocumentMenuViewController(new string[] { UTType.Data }, UIDocumentPickerMode.Import);
picker.AddOption(AppResources.Camera, null, UIDocumentMenuOrder.First, () =>
picker.AddOption(AppResources.Camera, UIImage.FromBundle("camera"), UIDocumentMenuOrder.First, () =>
{
var imagePicker = new UIImagePickerController { SourceType = UIImagePickerControllerSourceType.Camera };
imagePicker.FinishedPickingMedia += ImagePicker_FinishedPickingMedia;
@ -102,7 +103,7 @@ namespace Bit.iOS.Services
controller.PresentModalViewController(imagePicker, true);
});
picker.AddOption(AppResources.Photos, null, UIDocumentMenuOrder.First, () =>
picker.AddOption(AppResources.Photos, UIImage.FromBundle("photo"), UIDocumentMenuOrder.First, () =>
{
var imagePicker = new UIImagePickerController { SourceType = UIImagePickerControllerSourceType.PhotoLibrary };
imagePicker.FinishedPickingMedia += ImagePicker_FinishedPickingMedia;
@ -117,6 +118,7 @@ namespace Bit.iOS.Services
};
controller.PresentViewController(picker, true, null);
return Task.FromResult(0);
}
private void ImagePicker_FinishedPickingMedia(object sender, UIImagePickerMediaPickedEventArgs e)

View File

@ -758,6 +758,15 @@
<ItemGroup>
<BundleResource Include="Resources\camera%403x.png" />
</ItemGroup>
<ItemGroup>
<BundleResource Include="Resources\photo.png" />
</ItemGroup>
<ItemGroup>
<BundleResource Include="Resources\photo%402x.png" />
</ItemGroup>
<ItemGroup>
<BundleResource Include="Resources\photo%403x.png" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>

View File

@ -224,42 +224,6 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f0100b4
public const int activityChooserViewStyle = 2130772148;
// aapt resource value: 0x7f01012b
public const int ahBarColor = 2130772267;
// aapt resource value: 0x7f010133
public const int ahBarLength = 2130772275;
// aapt resource value: 0x7f010132
public const int ahBarWidth = 2130772274;
// aapt resource value: 0x7f010130
public const int ahCircleColor = 2130772272;
// aapt resource value: 0x7f01012f
public const int ahDelayMillis = 2130772271;
// aapt resource value: 0x7f010131
public const int ahRadius = 2130772273;
// aapt resource value: 0x7f01012c
public const int ahRimColor = 2130772268;
// aapt resource value: 0x7f01012d
public const int ahRimWidth = 2130772269;
// aapt resource value: 0x7f01012e
public const int ahSpinSpeed = 2130772270;
// aapt resource value: 0x7f010128
public const int ahText = 2130772264;
// aapt resource value: 0x7f010129
public const int ahTextColor = 2130772265;
// aapt resource value: 0x7f01012a
public const int ahTextSize = 2130772266;
// aapt resource value: 0x7f0100d7
public const int alertDialogButtonGroupStyle = 2130772183;
@ -1096,32 +1060,32 @@ namespace Bit.Android.Test
public partial class Color
{
// aapt resource value: 0x7f0c0052
public const int abc_background_cache_hint_selector_material_dark = 2131492946;
// aapt resource value: 0x7f0c0048
public const int abc_background_cache_hint_selector_material_dark = 2131492936;
// aapt resource value: 0x7f0c0053
public const int abc_background_cache_hint_selector_material_light = 2131492947;
// aapt resource value: 0x7f0c0049
public const int abc_background_cache_hint_selector_material_light = 2131492937;
// aapt resource value: 0x7f0c0054
public const int abc_color_highlight_material = 2131492948;
// aapt resource value: 0x7f0c004a
public const int abc_color_highlight_material = 2131492938;
// aapt resource value: 0x7f0c000e
public const int abc_input_method_navigation_guard = 2131492878;
// aapt resource value: 0x7f0c0055
public const int abc_primary_text_disable_only_material_dark = 2131492949;
// aapt resource value: 0x7f0c004b
public const int abc_primary_text_disable_only_material_dark = 2131492939;
// aapt resource value: 0x7f0c0056
public const int abc_primary_text_disable_only_material_light = 2131492950;
// aapt resource value: 0x7f0c004c
public const int abc_primary_text_disable_only_material_light = 2131492940;
// aapt resource value: 0x7f0c0057
public const int abc_primary_text_material_dark = 2131492951;
// aapt resource value: 0x7f0c004d
public const int abc_primary_text_material_dark = 2131492941;
// aapt resource value: 0x7f0c0058
public const int abc_primary_text_material_light = 2131492952;
// aapt resource value: 0x7f0c004e
public const int abc_primary_text_material_light = 2131492942;
// aapt resource value: 0x7f0c0059
public const int abc_search_url_text = 2131492953;
// aapt resource value: 0x7f0c004f
public const int abc_search_url_text = 2131492943;
// aapt resource value: 0x7f0c000f
public const int abc_search_url_text_normal = 2131492879;
@ -1132,11 +1096,11 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f0c0011
public const int abc_search_url_text_selected = 2131492881;
// aapt resource value: 0x7f0c005a
public const int abc_secondary_text_material_dark = 2131492954;
// aapt resource value: 0x7f0c0050
public const int abc_secondary_text_material_dark = 2131492944;
// aapt resource value: 0x7f0c005b
public const int abc_secondary_text_material_light = 2131492955;
// aapt resource value: 0x7f0c0051
public const int abc_secondary_text_material_light = 2131492945;
// aapt resource value: 0x7f0c0012
public const int accent_material_dark = 2131492882;
@ -1252,36 +1216,6 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f0c0029
public const int hint_foreground_material_light = 2131492905;
// aapt resource value: 0x7f0c0048
public const int hockeyapp_background_header = 2131492936;
// aapt resource value: 0x7f0c0049
public const int hockeyapp_background_light = 2131492937;
// aapt resource value: 0x7f0c004a
public const int hockeyapp_background_white = 2131492938;
// aapt resource value: 0x7f0c004b
public const int hockeyapp_button_background = 2131492939;
// aapt resource value: 0x7f0c004c
public const int hockeyapp_button_background_pressed = 2131492940;
// aapt resource value: 0x7f0c004d
public const int hockeyapp_button_background_selected = 2131492941;
// aapt resource value: 0x7f0c004e
public const int hockeyapp_text_black = 2131492942;
// aapt resource value: 0x7f0c004f
public const int hockeyapp_text_light = 2131492943;
// aapt resource value: 0x7f0c0050
public const int hockeyapp_text_normal = 2131492944;
// aapt resource value: 0x7f0c0051
public const int hockeyapp_text_white = 2131492945;
// aapt resource value: 0x7f0c002a
public const int material_blue_grey_800 = 2131492906;
@ -1366,11 +1300,11 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f0c0045
public const int switch_thumb_disabled_material_light = 2131492933;
// aapt resource value: 0x7f0c005c
public const int switch_thumb_material_dark = 2131492956;
// aapt resource value: 0x7f0c0052
public const int switch_thumb_material_dark = 2131492946;
// aapt resource value: 0x7f0c005d
public const int switch_thumb_material_light = 2131492957;
// aapt resource value: 0x7f0c0053
public const int switch_thumb_material_light = 2131492947;
// aapt resource value: 0x7f0c0046
public const int switch_thumb_normal_material_dark = 2131492934;
@ -1969,25 +1903,10 @@ namespace Bit.Android.Test
public const int fingerprint_white = 2130837581;
// aapt resource value: 0x7f02004e
public const int hockeyapp_btn_background = 2130837582;
public const int icon = 2130837582;
// aapt resource value: 0x7f02004f
public const int ic_errorstatus = 2130837583;
// aapt resource value: 0x7f020050
public const int ic_successstatus = 2130837584;
// aapt resource value: 0x7f020051
public const int icon = 2130837585;
// aapt resource value: 0x7f020054
public const int notification_template_icon_bg = 2130837588;
// aapt resource value: 0x7f020052
public const int roundedbg = 2130837586;
// aapt resource value: 0x7f020053
public const int roundedbgdark = 2130837587;
public const int notification_template_icon_bg = 2130837583;
static Drawable()
{
@ -2002,62 +1921,62 @@ namespace Bit.Android.Test
public partial class Id
{
// aapt resource value: 0x7f0800a6
public const int OptionHostName = 2131230886;
// aapt resource value: 0x7f080086
public const int OptionHostName = 2131230854;
// aapt resource value: 0x7f0800a7
public const int OptionPort = 2131230887;
// aapt resource value: 0x7f080087
public const int OptionPort = 2131230855;
// aapt resource value: 0x7f0800a5
public const int OptionRemoteServer = 2131230885;
// aapt resource value: 0x7f080085
public const int OptionRemoteServer = 2131230853;
// aapt resource value: 0x7f0800b5
public const int OptionsButton = 2131230901;
// aapt resource value: 0x7f080095
public const int OptionsButton = 2131230869;
// aapt resource value: 0x7f0800b0
public const int ResultFullName = 2131230896;
// aapt resource value: 0x7f080090
public const int ResultFullName = 2131230864;
// aapt resource value: 0x7f0800b2
public const int ResultMessage = 2131230898;
// aapt resource value: 0x7f080092
public const int ResultMessage = 2131230866;
// aapt resource value: 0x7f0800b1
public const int ResultResultState = 2131230897;
// aapt resource value: 0x7f080091
public const int ResultResultState = 2131230865;
// aapt resource value: 0x7f0800af
public const int ResultRunSingleMethodTest = 2131230895;
// aapt resource value: 0x7f08008f
public const int ResultRunSingleMethodTest = 2131230863;
// aapt resource value: 0x7f0800b3
public const int ResultStackTrace = 2131230899;
// aapt resource value: 0x7f080093
public const int ResultStackTrace = 2131230867;
// aapt resource value: 0x7f0800ab
public const int ResultsFailed = 2131230891;
// aapt resource value: 0x7f08008b
public const int ResultsFailed = 2131230859;
// aapt resource value: 0x7f0800a8
public const int ResultsId = 2131230888;
// aapt resource value: 0x7f080088
public const int ResultsId = 2131230856;
// aapt resource value: 0x7f0800ac
public const int ResultsIgnored = 2131230892;
// aapt resource value: 0x7f08008c
public const int ResultsIgnored = 2131230860;
// aapt resource value: 0x7f0800ad
public const int ResultsInconclusive = 2131230893;
// aapt resource value: 0x7f08008d
public const int ResultsInconclusive = 2131230861;
// aapt resource value: 0x7f0800ae
public const int ResultsMessage = 2131230894;
// aapt resource value: 0x7f08008e
public const int ResultsMessage = 2131230862;
// aapt resource value: 0x7f0800aa
public const int ResultsPassed = 2131230890;
// aapt resource value: 0x7f08008a
public const int ResultsPassed = 2131230858;
// aapt resource value: 0x7f0800a9
public const int ResultsResult = 2131230889;
// aapt resource value: 0x7f080089
public const int ResultsResult = 2131230857;
// aapt resource value: 0x7f0800b4
public const int RunTestsButton = 2131230900;
// aapt resource value: 0x7f080094
public const int RunTestsButton = 2131230868;
// aapt resource value: 0x7f0800b6
public const int TestSuiteListView = 2131230902;
// aapt resource value: 0x7f080096
public const int TestSuiteListView = 2131230870;
// aapt resource value: 0x7f080098
public const int action0 = 2131230872;
// aapt resource value: 0x7f080078
public const int action0 = 2131230840;
// aapt resource value: 0x7f08005c
public const int action_bar = 2131230812;
@ -2083,8 +2002,8 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f08005d
public const int action_context_bar = 2131230813;
// aapt resource value: 0x7f08009c
public const int action_divider = 2131230876;
// aapt resource value: 0x7f08007c
public const int action_divider = 2131230844;
// aapt resource value: 0x7f080004
public const int action_menu_divider = 2131230724;
@ -2125,26 +2044,8 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f080046
public const int buttonPanel = 2131230790;
// aapt resource value: 0x7f080085
public const int button_add_response = 2131230853;
// aapt resource value: 0x7f080080
public const int button_attachment = 2131230848;
// aapt resource value: 0x7f08008a
public const int button_login = 2131230858;
// aapt resource value: 0x7f080086
public const int button_refresh = 2131230854;
// aapt resource value: 0x7f080081
public const int button_send = 2131230849;
// aapt resource value: 0x7f08008e
public const int button_update = 2131230862;
// aapt resource value: 0x7f080099
public const int cancel_action = 2131230873;
// aapt resource value: 0x7f080079
public const int cancel_action = 2131230841;
// aapt resource value: 0x7f080016
public const int center = 2131230742;
@ -2158,8 +2059,8 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f080054
public const int checkbox = 2131230804;
// aapt resource value: 0x7f08009f
public const int chronometer = 2131230879;
// aapt resource value: 0x7f08007f
public const int chronometer = 2131230847;
// aapt resource value: 0x7f08001f
public const int clip_horizontal = 2131230751;
@ -2170,9 +2071,6 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f080038
public const int collapseActionView = 2131230776;
// aapt resource value: 0x7f0800b7
public const int contentFrame = 2131230903;
// aapt resource value: 0x7f08004c
public const int contentPanel = 2131230796;
@ -2212,8 +2110,8 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f080019
public const int end = 2131230745;
// aapt resource value: 0x7f0800a4
public const int end_padder = 2131230884;
// aapt resource value: 0x7f080084
public const int end_padder = 2131230852;
// aapt resource value: 0x7f08000e
public const int enterAlways = 2131230734;
@ -2269,80 +2167,29 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f080041
public const int image = 2131230785;
// aapt resource value: 0x7f0800a3
public const int info = 2131230883;
// aapt resource value: 0x7f08007c
public const int input_email = 2131230844;
// aapt resource value: 0x7f08007e
public const int input_message = 2131230846;
// aapt resource value: 0x7f08007b
public const int input_name = 2131230843;
// aapt resource value: 0x7f080089
public const int input_password = 2131230857;
// aapt resource value: 0x7f08007d
public const int input_subject = 2131230845;
// aapt resource value: 0x7f080083
public const int info = 2131230851;
// aapt resource value: 0x7f080000
public const int item_touch_helper_previous_elevation = 2131230720;
// aapt resource value: 0x7f080090
public const int label_author = 2131230864;
// aapt resource value: 0x7f080091
public const int label_date = 2131230865;
// aapt resource value: 0x7f080083
public const int label_last_updated = 2131230851;
// aapt resource value: 0x7f080078
public const int label_message = 2131230840;
// aapt resource value: 0x7f080092
public const int label_text = 2131230866;
// aapt resource value: 0x7f08008c
public const int label_title = 2131230860;
// aapt resource value: 0x7f08008d
public const int label_version = 2131230861;
// aapt resource value: 0x7f08001b
public const int left = 2131230747;
// aapt resource value: 0x7f08009d
public const int line1 = 2131230877;
// aapt resource value: 0x7f08007d
public const int line1 = 2131230845;
// aapt resource value: 0x7f0800a1
public const int line3 = 2131230881;
// aapt resource value: 0x7f080081
public const int line3 = 2131230849;
// aapt resource value: 0x7f080027
public const int listMode = 2131230759;
// aapt resource value: 0x7f080093
public const int list_attachments = 2131230867;
// aapt resource value: 0x7f080087
public const int list_feedback_messages = 2131230855;
// aapt resource value: 0x7f080043
public const int list_item = 2131230787;
// aapt resource value: 0x7f080096
public const int loadingImage = 2131230870;
// aapt resource value: 0x7f080094
public const int loadingProgressBar = 2131230868;
// aapt resource value: 0x7f080097
public const int loadingProgressWheel = 2131230871;
// aapt resource value: 0x7f08009b
public const int media_actions = 2131230875;
// aapt resource value: 0x7f08007b
public const int media_actions = 2131230843;
// aapt resource value: 0x7f080036
public const int middle = 2131230774;
@ -2476,8 +2323,8 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f08001d
public const int start = 2131230749;
// aapt resource value: 0x7f08009a
public const int status_bar_latest_event_content = 2131230874;
// aapt resource value: 0x7f08007a
public const int status_bar_latest_event_content = 2131230842;
// aapt resource value: 0x7f080067
public const int submit_area = 2131230823;
@ -2485,23 +2332,17 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f080028
public const int tabMode = 2131230760;
// aapt resource value: 0x7f0800a2
public const int text = 2131230882;
// aapt resource value: 0x7f080082
public const int text = 2131230850;
// aapt resource value: 0x7f0800a0
public const int text2 = 2131230880;
// aapt resource value: 0x7f080080
public const int text2 = 2131230848;
// aapt resource value: 0x7f08004f
public const int textSpacerNoButtons = 2131230799;
// aapt resource value: 0x7f080095
public const int textViewStatus = 2131230869;
// aapt resource value: 0x7f080088
public const int text_headline = 2131230856;
// aapt resource value: 0x7f08009e
public const int time = 2131230878;
// aapt resource value: 0x7f08007e
public const int time = 2131230846;
// aapt resource value: 0x7f080045
public const int title = 2131230789;
@ -2524,36 +2365,15 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f08002e
public const int useLogo = 2131230766;
// aapt resource value: 0x7f08008b
public const int view_header = 2131230859;
// aapt resource value: 0x7f080001
public const int view_offset_helper = 2131230721;
// aapt resource value: 0x7f08008f
public const int web_update_details = 2131230863;
// aapt resource value: 0x7f08003b
public const int withText = 2131230779;
// aapt resource value: 0x7f08002f
public const int wrap_content = 2131230767;
// aapt resource value: 0x7f08007f
public const int wrapper_attachments = 2131230847;
// aapt resource value: 0x7f08007a
public const int wrapper_feedback = 2131230842;
// aapt resource value: 0x7f080079
public const int wrapper_feedback_scroll = 2131230841;
// aapt resource value: 0x7f080082
public const int wrapper_messages = 2131230850;
// aapt resource value: 0x7f080084
public const int wrapper_messages_buttons = 2131230852;
static Id()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
@ -2719,85 +2539,52 @@ namespace Bit.Android.Test
public const int FingerprintDialog = 2130903077;
// aapt resource value: 0x7f030026
public const int hockeyapp_activity_expiry_info = 2130903078;
public const int notification_media_action = 2130903078;
// aapt resource value: 0x7f030027
public const int hockeyapp_activity_feedback = 2130903079;
public const int notification_media_cancel_action = 2130903079;
// aapt resource value: 0x7f030028
public const int hockeyapp_activity_login = 2130903080;
public const int notification_template_big_media = 2130903080;
// aapt resource value: 0x7f030029
public const int hockeyapp_activity_update = 2130903081;
public const int notification_template_big_media_narrow = 2130903081;
// aapt resource value: 0x7f03002a
public const int hockeyapp_fragment_update = 2130903082;
public const int notification_template_lines = 2130903082;
// aapt resource value: 0x7f03002b
public const int hockeyapp_view_feedback_message = 2130903083;
public const int notification_template_media = 2130903083;
// aapt resource value: 0x7f03002c
public const int loading = 2130903084;
public const int notification_template_part_chronometer = 2130903084;
// aapt resource value: 0x7f03002d
public const int loadingimage = 2130903085;
public const int notification_template_part_time = 2130903085;
// aapt resource value: 0x7f03002e
public const int loadingprogress = 2130903086;
public const int options = 2130903086;
// aapt resource value: 0x7f03002f
public const int notification_media_action = 2130903087;
public const int results = 2130903087;
// aapt resource value: 0x7f030030
public const int notification_media_cancel_action = 2130903088;
public const int select_dialog_item_material = 2130903088;
// aapt resource value: 0x7f030031
public const int notification_template_big_media = 2130903089;
public const int select_dialog_multichoice_material = 2130903089;
// aapt resource value: 0x7f030032
public const int notification_template_big_media_narrow = 2130903090;
public const int select_dialog_singlechoice_material = 2130903090;
// aapt resource value: 0x7f030033
public const int notification_template_lines = 2130903091;
public const int support_simple_spinner_dropdown_item = 2130903091;
// aapt resource value: 0x7f030034
public const int notification_template_media = 2130903092;
public const int test_result = 2130903092;
// aapt resource value: 0x7f030035
public const int notification_template_part_chronometer = 2130903093;
// aapt resource value: 0x7f030036
public const int notification_template_part_time = 2130903094;
// aapt resource value: 0x7f030037
public const int options = 2130903095;
// aapt resource value: 0x7f030038
public const int results = 2130903096;
// aapt resource value: 0x7f030039
public const int select_dialog_item_material = 2130903097;
// aapt resource value: 0x7f03003a
public const int select_dialog_multichoice_material = 2130903098;
// aapt resource value: 0x7f03003b
public const int select_dialog_singlechoice_material = 2130903099;
// aapt resource value: 0x7f03003c
public const int support_simple_spinner_dropdown_item = 2130903100;
// aapt resource value: 0x7f03003d
public const int test_result = 2130903101;
// aapt resource value: 0x7f03003e
public const int test_suite = 2130903102;
// aapt resource value: 0x7f03003f
public const int zxingscanneractivitylayout = 2130903103;
// aapt resource value: 0x7f030040
public const int zxingscannerfragmentlayout = 2130903104;
public const int test_suite = 2130903093;
static Layout()
{
@ -2828,11 +2615,11 @@ namespace Bit.Android.Test
public partial class String
{
// aapt resource value: 0x7f090063
public const int ApplicationName = 2131296355;
// aapt resource value: 0x7f09001b
public const int ApplicationName = 2131296283;
// aapt resource value: 0x7f090062
public const int Hello = 2131296354;
// aapt resource value: 0x7f09001a
public const int Hello = 2131296282;
// aapt resource value: 0x7f090006
public const int abc_action_bar_home_description = 2131296262;
@ -2909,222 +2696,6 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f090002
public const int common_google_play_services_unknown_issue = 2131296258;
// aapt resource value: 0x7f09001b
public const int hockeyapp_crash_dialog_app_name_fallback = 2131296283;
// aapt resource value: 0x7f09001c
public const int hockeyapp_crash_dialog_message = 2131296284;
// aapt resource value: 0x7f09001d
public const int hockeyapp_crash_dialog_negative_button = 2131296285;
// aapt resource value: 0x7f09001e
public const int hockeyapp_crash_dialog_neutral_button = 2131296286;
// aapt resource value: 0x7f09001f
public const int hockeyapp_crash_dialog_positive_button = 2131296287;
// aapt resource value: 0x7f090020
public const int hockeyapp_crash_dialog_title = 2131296288;
// aapt resource value: 0x7f090021
public const int hockeyapp_dialog_error_message = 2131296289;
// aapt resource value: 0x7f090022
public const int hockeyapp_dialog_error_title = 2131296290;
// aapt resource value: 0x7f090023
public const int hockeyapp_dialog_negative_button = 2131296291;
// aapt resource value: 0x7f090024
public const int hockeyapp_dialog_positive_button = 2131296292;
// aapt resource value: 0x7f090025
public const int hockeyapp_download_failed_dialog_message = 2131296293;
// aapt resource value: 0x7f090026
public const int hockeyapp_download_failed_dialog_negative_button = 2131296294;
// aapt resource value: 0x7f090027
public const int hockeyapp_download_failed_dialog_positive_button = 2131296295;
// aapt resource value: 0x7f090028
public const int hockeyapp_download_failed_dialog_title = 2131296296;
// aapt resource value: 0x7f090029
public const int hockeyapp_error_no_network_message = 2131296297;
// aapt resource value: 0x7f09002a
public const int hockeyapp_expiry_info_text = 2131296298;
// aapt resource value: 0x7f09002b
public const int hockeyapp_expiry_info_title = 2131296299;
// aapt resource value: 0x7f09002c
public const int hockeyapp_feedback_attach_file = 2131296300;
// aapt resource value: 0x7f09002d
public const int hockeyapp_feedback_attach_picture = 2131296301;
// aapt resource value: 0x7f09002e
public const int hockeyapp_feedback_attachment_button_text = 2131296302;
// aapt resource value: 0x7f09002f
public const int hockeyapp_feedback_attachment_error = 2131296303;
// aapt resource value: 0x7f090030
public const int hockeyapp_feedback_attachment_loading = 2131296304;
// aapt resource value: 0x7f090031
public const int hockeyapp_feedback_email_hint = 2131296305;
// aapt resource value: 0x7f090032
public const int hockeyapp_feedback_failed_text = 2131296306;
// aapt resource value: 0x7f090033
public const int hockeyapp_feedback_failed_title = 2131296307;
// aapt resource value: 0x7f090034
public const int hockeyapp_feedback_fetching_feedback_text = 2131296308;
// aapt resource value: 0x7f090035
public const int hockeyapp_feedback_generic_error = 2131296309;
// aapt resource value: 0x7f090036
public const int hockeyapp_feedback_last_updated_text = 2131296310;
// aapt resource value: 0x7f090037
public const int hockeyapp_feedback_max_attachments_allowed = 2131296311;
// aapt resource value: 0x7f090038
public const int hockeyapp_feedback_message_hint = 2131296312;
// aapt resource value: 0x7f090039
public const int hockeyapp_feedback_name_hint = 2131296313;
// aapt resource value: 0x7f09003a
public const int hockeyapp_feedback_refresh_button_text = 2131296314;
// aapt resource value: 0x7f09003b
public const int hockeyapp_feedback_response_button_text = 2131296315;
// aapt resource value: 0x7f09003c
public const int hockeyapp_feedback_select_file = 2131296316;
// aapt resource value: 0x7f09003d
public const int hockeyapp_feedback_select_picture = 2131296317;
// aapt resource value: 0x7f09003e
public const int hockeyapp_feedback_send_button_text = 2131296318;
// aapt resource value: 0x7f09003f
public const int hockeyapp_feedback_send_generic_error = 2131296319;
// aapt resource value: 0x7f090040
public const int hockeyapp_feedback_send_network_error = 2131296320;
// aapt resource value: 0x7f090041
public const int hockeyapp_feedback_sending_feedback_text = 2131296321;
// aapt resource value: 0x7f090042
public const int hockeyapp_feedback_subject_hint = 2131296322;
// aapt resource value: 0x7f090043
public const int hockeyapp_feedback_title = 2131296323;
// aapt resource value: 0x7f090044
public const int hockeyapp_feedback_validate_email_empty = 2131296324;
// aapt resource value: 0x7f090045
public const int hockeyapp_feedback_validate_email_error = 2131296325;
// aapt resource value: 0x7f090046
public const int hockeyapp_feedback_validate_name_error = 2131296326;
// aapt resource value: 0x7f090047
public const int hockeyapp_feedback_validate_subject_error = 2131296327;
// aapt resource value: 0x7f090048
public const int hockeyapp_feedback_validate_text_error = 2131296328;
// aapt resource value: 0x7f090049
public const int hockeyapp_login_email_hint = 2131296329;
// aapt resource value: 0x7f09004a
public const int hockeyapp_login_headline_text = 2131296330;
// aapt resource value: 0x7f09004b
public const int hockeyapp_login_headline_text_email_only = 2131296331;
// aapt resource value: 0x7f09004c
public const int hockeyapp_login_login_button_text = 2131296332;
// aapt resource value: 0x7f09004d
public const int hockeyapp_login_missing_credentials_toast = 2131296333;
// aapt resource value: 0x7f09004e
public const int hockeyapp_login_password_hint = 2131296334;
// aapt resource value: 0x7f09004f
public const int hockeyapp_paint_dialog_message = 2131296335;
// aapt resource value: 0x7f090050
public const int hockeyapp_paint_dialog_negative_button = 2131296336;
// aapt resource value: 0x7f090051
public const int hockeyapp_paint_dialog_neutral_button = 2131296337;
// aapt resource value: 0x7f090052
public const int hockeyapp_paint_dialog_positive_button = 2131296338;
// aapt resource value: 0x7f090053
public const int hockeyapp_paint_indicator_toast = 2131296339;
// aapt resource value: 0x7f090054
public const int hockeyapp_paint_menu_clear = 2131296340;
// aapt resource value: 0x7f090055
public const int hockeyapp_paint_menu_save = 2131296341;
// aapt resource value: 0x7f090056
public const int hockeyapp_paint_menu_undo = 2131296342;
// aapt resource value: 0x7f090057
public const int hockeyapp_permission_dialog_negative_button = 2131296343;
// aapt resource value: 0x7f090058
public const int hockeyapp_permission_dialog_positive_button = 2131296344;
// aapt resource value: 0x7f090059
public const int hockeyapp_permission_update_message = 2131296345;
// aapt resource value: 0x7f09005a
public const int hockeyapp_permission_update_title = 2131296346;
// aapt resource value: 0x7f09005b
public const int hockeyapp_update_button = 2131296347;
// aapt resource value: 0x7f09005c
public const int hockeyapp_update_dialog_message = 2131296348;
// aapt resource value: 0x7f09005d
public const int hockeyapp_update_dialog_negative_button = 2131296349;
// aapt resource value: 0x7f09005e
public const int hockeyapp_update_dialog_positive_button = 2131296350;
// aapt resource value: 0x7f09005f
public const int hockeyapp_update_dialog_title = 2131296351;
// aapt resource value: 0x7f090060
public const int hockeyapp_update_mandatory_toast = 2131296352;
// aapt resource value: 0x7f090061
public const int hockeyapp_update_version_details_label = 2131296353;
// aapt resource value: 0x7f09001a
public const int library_name = 2131296282;
// aapt resource value: 0x7f090019
public const int status_bar_notification_info_overflow = 2131296281;
@ -3588,14 +3159,14 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f0b0006
public const int Base_Widget_Design_TabLayout = 2131427334;
// aapt resource value: 0x7f0b015f
public const int BitwardenTheme = 2131427679;
// aapt resource value: 0x7f0b015c
public const int BitwardenTheme = 2131427676;
// aapt resource value: 0x7f0b0160
public const int BitwardenTheme_Base = 2131427680;
// aapt resource value: 0x7f0b015d
public const int BitwardenTheme_Base = 2131427677;
// aapt resource value: 0x7f0b015e
public const int BitwardenTheme_Splash = 2131427678;
// aapt resource value: 0x7f0b015b
public const int BitwardenTheme_Splash = 2131427675;
// aapt resource value: 0x7f0b0000
public const int CardView = 2131427328;
@ -3606,15 +3177,6 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f0b0003
public const int CardView_Light = 2131427331;
// aapt resource value: 0x7f0b015b
public const int HockeyApp_ButtonStyle = 2131427675;
// aapt resource value: 0x7f0b015c
public const int HockeyApp_EditTextStyle = 2131427676;
// aapt resource value: 0x7f0b015d
public const int HockeyApp_SingleLineInputStyle = 2131427677;
// aapt resource value: 0x7f0b0034
public const int Platform_AppCompat = 2131427380;
@ -5457,56 +5019,6 @@ namespace Bit.Android.Test
// aapt resource value: 0
public const int PopupWindowBackgroundState_state_above_anchor = 0;
public static int[] ProgressWheel = new int[] {
2130772264,
2130772265,
2130772266,
2130772267,
2130772268,
2130772269,
2130772270,
2130772271,
2130772272,
2130772273,
2130772274,
2130772275};
// aapt resource value: 3
public const int ProgressWheel_ahBarColor = 3;
// aapt resource value: 11
public const int ProgressWheel_ahBarLength = 11;
// aapt resource value: 10
public const int ProgressWheel_ahBarWidth = 10;
// aapt resource value: 8
public const int ProgressWheel_ahCircleColor = 8;
// aapt resource value: 7
public const int ProgressWheel_ahDelayMillis = 7;
// aapt resource value: 9
public const int ProgressWheel_ahRadius = 9;
// aapt resource value: 4
public const int ProgressWheel_ahRimColor = 4;
// aapt resource value: 5
public const int ProgressWheel_ahRimWidth = 5;
// aapt resource value: 6
public const int ProgressWheel_ahSpinSpeed = 6;
// aapt resource value: 0
public const int ProgressWheel_ahText = 0;
// aapt resource value: 1
public const int ProgressWheel_ahTextColor = 1;
// aapt resource value: 2
public const int ProgressWheel_ahTextSize = 2;
public static int[] RecyclerView = new int[] {
16842948,
2130771968,