Added custom device info service for determining model and version (ios = major version, android = API level).

This commit is contained in:
Kyle Spearrin 2016-08-23 22:43:17 -04:00
parent e5f3be9669
commit 043a4122b4
16 changed files with 664 additions and 156 deletions

View File

@ -155,14 +155,6 @@
<HintPath>..\..\packages\Plugin.CurrentActivity.1.0.1\lib\MonoAndroid10\Plugin.CurrentActivity.dll</HintPath> <HintPath>..\..\packages\Plugin.CurrentActivity.1.0.1\lib\MonoAndroid10\Plugin.CurrentActivity.dll</HintPath>
<Private>True</Private> <Private>True</Private>
</Reference> </Reference>
<Reference Include="Plugin.DeviceInfo, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\Xam.Plugin.DeviceInfo.2.0.2\lib\MonoAndroid10\Plugin.DeviceInfo.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Plugin.DeviceInfo.Abstractions, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\Xam.Plugin.DeviceInfo.2.0.2\lib\MonoAndroid10\Plugin.DeviceInfo.Abstractions.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Plugin.Fingerprint, Version=1.2.0.0, Culture=neutral, processorArchitecture=MSIL"> <Reference Include="Plugin.Fingerprint, Version=1.2.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\Plugin.Fingerprint.1.2.0\lib\MonoAndroid\Plugin.Fingerprint.dll</HintPath> <HintPath>..\..\packages\Plugin.Fingerprint.1.2.0\lib\MonoAndroid\Plugin.Fingerprint.dll</HintPath>
<Private>True</Private> <Private>True</Private>
@ -305,6 +297,7 @@
<Compile Include="Controls\ExtendedEntryRenderer.cs" /> <Compile Include="Controls\ExtendedEntryRenderer.cs" />
<Compile Include="MainApplication.cs" /> <Compile Include="MainApplication.cs" />
<Compile Include="Resources\Resource.Designer.cs" /> <Compile Include="Resources\Resource.Designer.cs" />
<Compile Include="Services\DeviceInfoService.cs" />
<Compile Include="Services\GoogleAnalyticsService.cs" /> <Compile Include="Services\GoogleAnalyticsService.cs" />
<Compile Include="Services\AppInfoService.cs" /> <Compile Include="Services\AppInfoService.cs" />
<Compile Include="Services\ClipboardService.cs" /> <Compile Include="Services\ClipboardService.cs" />

View File

@ -11,7 +11,6 @@ using Bit.App.Services;
using Microsoft.Practices.Unity; using Microsoft.Practices.Unity;
using Plugin.Connectivity; using Plugin.Connectivity;
using Plugin.CurrentActivity; using Plugin.CurrentActivity;
using Plugin.DeviceInfo;
using Plugin.Fingerprint; using Plugin.Fingerprint;
using Plugin.Settings; using Plugin.Settings;
using PushNotification.Plugin; using PushNotification.Plugin;
@ -143,6 +142,7 @@ namespace Bit.Android
.RegisterType<ILockService, LockService>(new ContainerControlledLifetimeManager()) .RegisterType<ILockService, LockService>(new ContainerControlledLifetimeManager())
.RegisterType<IAppInfoService, AppInfoService>(new ContainerControlledLifetimeManager()) .RegisterType<IAppInfoService, AppInfoService>(new ContainerControlledLifetimeManager())
.RegisterType<IGoogleAnalyticsService, GoogleAnalyticsService>(new ContainerControlledLifetimeManager()) .RegisterType<IGoogleAnalyticsService, GoogleAnalyticsService>(new ContainerControlledLifetimeManager())
.RegisterType<IDeviceInfoService, DeviceInfoService>(new ContainerControlledLifetimeManager())
// Repositories // Repositories
.RegisterType<IFolderRepository, FolderRepository>(new ContainerControlledLifetimeManager()) .RegisterType<IFolderRepository, FolderRepository>(new ContainerControlledLifetimeManager())
.RegisterType<IFolderApiRepository, FolderApiRepository>(new ContainerControlledLifetimeManager()) .RegisterType<IFolderApiRepository, FolderApiRepository>(new ContainerControlledLifetimeManager())
@ -153,7 +153,6 @@ namespace Bit.Android
.RegisterType<IAccountsApiRepository, AccountsApiRepository>(new ContainerControlledLifetimeManager()) .RegisterType<IAccountsApiRepository, AccountsApiRepository>(new ContainerControlledLifetimeManager())
.RegisterType<ICipherApiRepository, CipherApiRepository>(new ContainerControlledLifetimeManager()) .RegisterType<ICipherApiRepository, CipherApiRepository>(new ContainerControlledLifetimeManager())
// Other // Other
.RegisterInstance(CrossDeviceInfo.Current, new ContainerControlledLifetimeManager())
.RegisterInstance(CrossSettings.Current, new ContainerControlledLifetimeManager()) .RegisterInstance(CrossSettings.Current, new ContainerControlledLifetimeManager())
.RegisterInstance(CrossConnectivity.Current, new ContainerControlledLifetimeManager()) .RegisterInstance(CrossConnectivity.Current, new ContainerControlledLifetimeManager())
.RegisterInstance(UserDialogs.Instance, new ContainerControlledLifetimeManager()) .RegisterInstance(UserDialogs.Instance, new ContainerControlledLifetimeManager())

View File

@ -0,0 +1,11 @@
using Android.OS;
using Bit.App.Abstractions;
namespace Bit.Android.Services
{
public class DeviceInfoService : IDeviceInfoService
{
public string Model => Build.Model;
public int Version => (int)Build.VERSION.SdkInt;
}
}

View File

@ -23,7 +23,6 @@
<package id="Unity" version="3.5.1405-prerelease" targetFramework="monoandroid60" /> <package id="Unity" version="3.5.1405-prerelease" targetFramework="monoandroid60" />
<package id="Validation" version="2.2.8" targetFramework="monoandroid60" /> <package id="Validation" version="2.2.8" targetFramework="monoandroid60" />
<package id="Xam.Plugin.Connectivity" version="2.2.12" targetFramework="monoandroid60" /> <package id="Xam.Plugin.Connectivity" version="2.2.12" targetFramework="monoandroid60" />
<package id="Xam.Plugin.DeviceInfo" version="2.0.2" targetFramework="monoandroid60" />
<package id="Xam.Plugin.PushNotification" version="1.2.2" targetFramework="monoandroid60" developmentDependency="true" /> <package id="Xam.Plugin.PushNotification" version="1.2.2" targetFramework="monoandroid60" developmentDependency="true" />
<package id="Xam.Plugins.Settings" version="2.1.0" targetFramework="monoandroid60" /> <package id="Xam.Plugins.Settings" version="2.1.0" targetFramework="monoandroid60" />
<package id="Xamarin.Android.Support.Animated.Vector.Drawable" version="23.3.0" targetFramework="monoandroid60" /> <package id="Xamarin.Android.Support.Animated.Vector.Drawable" version="23.3.0" targetFramework="monoandroid60" />

View File

@ -0,0 +1,8 @@
namespace Bit.App.Abstractions
{
public interface IDeviceInfoService
{
string Model { get; }
int Version { get; }
}
}

View File

@ -37,6 +37,7 @@
<ItemGroup> <ItemGroup>
<Compile Include="Abstractions\Repositories\IAccountsApiRepository.cs" /> <Compile Include="Abstractions\Repositories\IAccountsApiRepository.cs" />
<Compile Include="Abstractions\Repositories\IDeviceApiRepository.cs" /> <Compile Include="Abstractions\Repositories\IDeviceApiRepository.cs" />
<Compile Include="Abstractions\Services\IDeviceInfoService.cs" />
<Compile Include="Abstractions\Services\IGoogleAnalyticsService.cs" /> <Compile Include="Abstractions\Services\IGoogleAnalyticsService.cs" />
<Compile Include="Abstractions\Services\IAppInfoService.cs" /> <Compile Include="Abstractions\Services\IAppInfoService.cs" />
<Compile Include="Abstractions\Services\IAppIdService.cs" /> <Compile Include="Abstractions\Services\IAppIdService.cs" />
@ -246,14 +247,6 @@
<HintPath>..\..\packages\Xam.Plugin.Connectivity.2.2.12\lib\portable-net45+wp80+wp81+wpa81+win8+MonoAndroid10+MonoTouch10+Xamarin.iOS10+Xamarin.Mac20+UAP10\Plugin.Connectivity.Abstractions.dll</HintPath> <HintPath>..\..\packages\Xam.Plugin.Connectivity.2.2.12\lib\portable-net45+wp80+wp81+wpa81+win8+MonoAndroid10+MonoTouch10+Xamarin.iOS10+Xamarin.Mac20+UAP10\Plugin.Connectivity.Abstractions.dll</HintPath>
<Private>True</Private> <Private>True</Private>
</Reference> </Reference>
<Reference Include="Plugin.DeviceInfo, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\Xam.Plugin.DeviceInfo.2.0.2\lib\portable-net45+wp8+wpa81+win8+MonoAndroid10+MonoTouch10+Xamarin.iOS10+UAP10\Plugin.DeviceInfo.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Plugin.DeviceInfo.Abstractions, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\Xam.Plugin.DeviceInfo.2.0.2\lib\portable-net45+wp8+wpa81+win8+MonoAndroid10+MonoTouch10+Xamarin.iOS10+UAP10\Plugin.DeviceInfo.Abstractions.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Plugin.Fingerprint, Version=1.2.0.0, Culture=neutral, processorArchitecture=MSIL"> <Reference Include="Plugin.Fingerprint, Version=1.2.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\Plugin.Fingerprint.1.2.0\lib\portable-net45+win8+wpa81+wp8\Plugin.Fingerprint.dll</HintPath> <HintPath>..\..\packages\Plugin.Fingerprint.1.2.0\lib\portable-net45+win8+wpa81+wp8\Plugin.Fingerprint.dll</HintPath>
<Private>True</Private> <Private>True</Private>

View File

@ -1,6 +1,6 @@
using Bit.App.Abstractions; using Bit.App.Abstractions;
using Plugin.DeviceInfo.Abstractions;
using PushNotification.Plugin.Abstractions; using PushNotification.Plugin.Abstractions;
using Xamarin.Forms;
namespace Bit.App.Models.Api namespace Bit.App.Models.Api
{ {
@ -8,11 +8,11 @@ namespace Bit.App.Models.Api
{ {
public DeviceRequest() { } public DeviceRequest() { }
public DeviceRequest(IAppIdService appIdService, IDeviceInfo deviceInfo) public DeviceRequest(IAppIdService appIdService, IDeviceInfoService deviceInfoService)
{ {
Identifier = appIdService.AppId; Identifier = appIdService.AppId;
Name = deviceInfo.Model; Name = deviceInfoService.Model;
Type = deviceInfo.Platform == Platform.Android ? DeviceType.Android : DeviceType.iOS; Type = Device.OS == TargetPlatform.Android ? DeviceType.Android : DeviceType.iOS;
} }
public DeviceType Type { get; set; } public DeviceType Type { get; set; }

View File

@ -4,7 +4,6 @@ using Bit.App.Abstractions;
using Bit.App.Controls; using Bit.App.Controls;
using Bit.App.Models.Api; using Bit.App.Models.Api;
using Bit.App.Resources; using Bit.App.Resources;
using Plugin.DeviceInfo.Abstractions;
using Xamarin.Forms; using Xamarin.Forms;
using XLabs.Ioc; using XLabs.Ioc;
using Acr.UserDialogs; using Acr.UserDialogs;
@ -18,7 +17,7 @@ namespace Bit.App.Pages
{ {
private ICryptoService _cryptoService; private ICryptoService _cryptoService;
private IAuthService _authService; private IAuthService _authService;
private IDeviceInfo _deviceInfo; private IDeviceInfoService _deviceInfoService;
private IAppIdService _appIdService; private IAppIdService _appIdService;
private IUserDialogs _userDialogs; private IUserDialogs _userDialogs;
private ISyncService _syncService; private ISyncService _syncService;
@ -33,7 +32,7 @@ namespace Bit.App.Pages
_email = email; _email = email;
_cryptoService = Resolver.Resolve<ICryptoService>(); _cryptoService = Resolver.Resolve<ICryptoService>();
_authService = Resolver.Resolve<IAuthService>(); _authService = Resolver.Resolve<IAuthService>();
_deviceInfo = Resolver.Resolve<IDeviceInfo>(); _deviceInfoService = Resolver.Resolve<IDeviceInfoService>();
_appIdService = Resolver.Resolve<IAppIdService>(); _appIdService = Resolver.Resolve<IAppIdService>();
_userDialogs = Resolver.Resolve<IUserDialogs>(); _userDialogs = Resolver.Resolve<IUserDialogs>();
_syncService = Resolver.Resolve<ISyncService>(); _syncService = Resolver.Resolve<ISyncService>();
@ -184,7 +183,7 @@ namespace Bit.App.Pages
{ {
Email = normalizedEmail, Email = normalizedEmail,
MasterPasswordHash = _cryptoService.HashPasswordBase64(key, PasswordCell.Entry.Text), MasterPasswordHash = _cryptoService.HashPasswordBase64(key, PasswordCell.Entry.Text),
Device = new DeviceRequest(_appIdService, _deviceInfo) Device = new DeviceRequest(_appIdService, _deviceInfoService)
}; };
_userDialogs.ShowLoading("Logging in...", MaskType.Black); _userDialogs.ShowLoading("Logging in...", MaskType.Black);

View File

@ -4,7 +4,6 @@ using Bit.App.Abstractions;
using Bit.App.Controls; using Bit.App.Controls;
using Bit.App.Models.Api; using Bit.App.Models.Api;
using Bit.App.Resources; using Bit.App.Resources;
using Plugin.DeviceInfo.Abstractions;
using Xamarin.Forms; using Xamarin.Forms;
using XLabs.Ioc; using XLabs.Ioc;
using Acr.UserDialogs; using Acr.UserDialogs;
@ -16,7 +15,7 @@ namespace Bit.App.Pages
{ {
private ICryptoService _cryptoService; private ICryptoService _cryptoService;
private IAuthService _authService; private IAuthService _authService;
private IDeviceInfo _deviceInfo; private IDeviceInfoService _deviceInfoService;
private IAppIdService _appIdService; private IAppIdService _appIdService;
private IUserDialogs _userDialogs; private IUserDialogs _userDialogs;
private ISyncService _syncService; private ISyncService _syncService;
@ -26,7 +25,7 @@ namespace Bit.App.Pages
{ {
_cryptoService = Resolver.Resolve<ICryptoService>(); _cryptoService = Resolver.Resolve<ICryptoService>();
_authService = Resolver.Resolve<IAuthService>(); _authService = Resolver.Resolve<IAuthService>();
_deviceInfo = Resolver.Resolve<IDeviceInfo>(); _deviceInfoService = Resolver.Resolve<IDeviceInfoService>();
_appIdService = Resolver.Resolve<IAppIdService>(); _appIdService = Resolver.Resolve<IAppIdService>();
_userDialogs = Resolver.Resolve<IUserDialogs>(); _userDialogs = Resolver.Resolve<IUserDialogs>();
_syncService = Resolver.Resolve<ISyncService>(); _syncService = Resolver.Resolve<ISyncService>();
@ -124,7 +123,7 @@ namespace Bit.App.Pages
{ {
Code = CodeCell.Entry.Text, Code = CodeCell.Entry.Text,
Provider = "Authenticator", Provider = "Authenticator",
Device = new DeviceRequest(_appIdService, _deviceInfo) Device = new DeviceRequest(_appIdService, _deviceInfoService)
}; };
_userDialogs.ShowLoading("Validating code...", MaskType.Black); _userDialogs.ShowLoading("Validating code...", MaskType.Black);

View File

@ -18,7 +18,6 @@
<package id="Unity" version="3.5.1405-prerelease" targetFramework="portable45-net45+win8+wpa81" /> <package id="Unity" version="3.5.1405-prerelease" targetFramework="portable45-net45+win8+wpa81" />
<package id="Validation" version="2.2.8" targetFramework="portable45-net45+win8+wpa81" /> <package id="Validation" version="2.2.8" targetFramework="portable45-net45+win8+wpa81" />
<package id="Xam.Plugin.Connectivity" version="2.2.12" targetFramework="portable45-net45+win8+wpa81" /> <package id="Xam.Plugin.Connectivity" version="2.2.12" targetFramework="portable45-net45+win8+wpa81" />
<package id="Xam.Plugin.DeviceInfo" version="2.0.2" targetFramework="portable45-net45+win8+wpa81" />
<package id="Xam.Plugin.PushNotification" version="1.2.2" targetFramework="portable45-net45+win8+wpa81" developmentDependency="true" /> <package id="Xam.Plugin.PushNotification" version="1.2.2" targetFramework="portable45-net45+win8+wpa81" developmentDependency="true" />
<package id="Xam.Plugins.Settings" version="2.1.0" targetFramework="portable45-net45+win8+wpa81" /> <package id="Xam.Plugins.Settings" version="2.1.0" targetFramework="portable45-net45+win8+wpa81" />
<package id="Xamarin.Forms" version="2.3.1.114" targetFramework="portable45-net45+win8+wpa81" /> <package id="Xamarin.Forms" version="2.3.1.114" targetFramework="portable45-net45+win8+wpa81" />

View File

@ -0,0 +1,25 @@
using Bit.App.Abstractions;
using UIKit;
namespace Bit.iOS.Core.Services
{
public class DeviceInfoService : IDeviceInfoService
{
public string Model => UIDevice.CurrentDevice.Model;
public int Version
{
get
{
int version;
var versionParts = UIDevice.CurrentDevice.SystemVersion.Split('.');
if(versionParts.Length > 0 && int.TryParse(versionParts[0], out version))
{
return version;
}
// unable to determine version
return -1;
}
}
}
}

View File

@ -87,6 +87,7 @@
<Compile Include="Controllers\ExtendedUIViewController.cs" /> <Compile Include="Controllers\ExtendedUIViewController.cs" />
<Compile Include="HockeyAppCrashManagerDelegate.cs" /> <Compile Include="HockeyAppCrashManagerDelegate.cs" />
<Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Services\DeviceInfoService.cs" />
<Compile Include="Services\KeyChainStorageService.cs" /> <Compile Include="Services\KeyChainStorageService.cs" />
<Compile Include="Services\CommonCryptoKeyDerivationService.cs" /> <Compile Include="Services\CommonCryptoKeyDerivationService.cs" />
<Compile Include="Services\Settings.cs" /> <Compile Include="Services\Settings.cs" />

View File

@ -20,10 +20,8 @@ using System.Diagnostics;
using Xamarin.Forms; using Xamarin.Forms;
using Bit.iOS.Core.Services; using Bit.iOS.Core.Services;
using PushNotification.Plugin; using PushNotification.Plugin;
using Plugin.DeviceInfo;
using Plugin.Connectivity.Abstractions; using Plugin.Connectivity.Abstractions;
using Bit.App.Pages; using Bit.App.Pages;
using PushNotification.Plugin.Abstractions;
using HockeyApp.iOS; using HockeyApp.iOS;
using Bit.iOS.Core; using Bit.iOS.Core;
using Google.Analytics; using Google.Analytics;
@ -260,6 +258,7 @@ namespace Bit.iOS
.RegisterType<ILockService, LockService>(new ContainerControlledLifetimeManager()) .RegisterType<ILockService, LockService>(new ContainerControlledLifetimeManager())
.RegisterType<IAppInfoService, AppInfoService>(new ContainerControlledLifetimeManager()) .RegisterType<IAppInfoService, AppInfoService>(new ContainerControlledLifetimeManager())
.RegisterType<IGoogleAnalyticsService, GoogleAnalyticsService>(new ContainerControlledLifetimeManager()) .RegisterType<IGoogleAnalyticsService, GoogleAnalyticsService>(new ContainerControlledLifetimeManager())
.RegisterType<IDeviceInfoService, DeviceInfoService>(new ContainerControlledLifetimeManager())
// Repositories // Repositories
.RegisterType<IFolderRepository, FolderRepository>(new ContainerControlledLifetimeManager()) .RegisterType<IFolderRepository, FolderRepository>(new ContainerControlledLifetimeManager())
.RegisterType<IFolderApiRepository, FolderApiRepository>(new ContainerControlledLifetimeManager()) .RegisterType<IFolderApiRepository, FolderApiRepository>(new ContainerControlledLifetimeManager())
@ -270,7 +269,6 @@ namespace Bit.iOS
.RegisterType<IAccountsApiRepository, AccountsApiRepository>(new ContainerControlledLifetimeManager()) .RegisterType<IAccountsApiRepository, AccountsApiRepository>(new ContainerControlledLifetimeManager())
.RegisterType<ICipherApiRepository, CipherApiRepository>(new ContainerControlledLifetimeManager()) .RegisterType<ICipherApiRepository, CipherApiRepository>(new ContainerControlledLifetimeManager())
// Other // Other
.RegisterInstance(CrossDeviceInfo.Current, new ContainerControlledLifetimeManager())
.RegisterInstance(CrossConnectivity.Current, new ContainerControlledLifetimeManager()) .RegisterInstance(CrossConnectivity.Current, new ContainerControlledLifetimeManager())
.RegisterInstance(UserDialogs.Instance, new ContainerControlledLifetimeManager()) .RegisterInstance(UserDialogs.Instance, new ContainerControlledLifetimeManager())
.RegisterInstance(CrossFingerprint.Current, new ContainerControlledLifetimeManager()); .RegisterInstance(CrossFingerprint.Current, new ContainerControlledLifetimeManager());

View File

@ -394,12 +394,6 @@
<Reference Include="XLabs.Ioc.Unity, Version=2.0.5782.12230, Culture=neutral, PublicKeyToken=null"> <Reference Include="XLabs.Ioc.Unity, Version=2.0.5782.12230, Culture=neutral, PublicKeyToken=null">
<HintPath>..\..\packages\XLabs.IoC.Unity.2.0.5782\lib\portable-net45+netcore45+wp8+MonoAndroid1+MonoTouch1\XLabs.Ioc.Unity.dll</HintPath> <HintPath>..\..\packages\XLabs.IoC.Unity.2.0.5782\lib\portable-net45+netcore45+wp8+MonoAndroid1+MonoTouch1\XLabs.Ioc.Unity.dll</HintPath>
</Reference> </Reference>
<Reference Include="Plugin.DeviceInfo, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>..\..\packages\Xam.Plugin.DeviceInfo.2.0.2\lib\Xamarin.iOS10\Plugin.DeviceInfo.dll</HintPath>
</Reference>
<Reference Include="Plugin.DeviceInfo.Abstractions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>..\..\packages\Xam.Plugin.DeviceInfo.2.0.2\lib\Xamarin.iOS10\Plugin.DeviceInfo.Abstractions.dll</HintPath>
</Reference>
<Reference Include="PushNotification.Plugin, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"> <Reference Include="PushNotification.Plugin, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>..\..\packages\Xam.Plugin.PushNotification.1.2.2\lib\Xamarin.iOS10\PushNotification.Plugin.dll</HintPath> <HintPath>..\..\packages\Xam.Plugin.PushNotification.1.2.2\lib\Xamarin.iOS10\PushNotification.Plugin.dll</HintPath>
</Reference> </Reference>

View File

@ -20,7 +20,6 @@
<package id="Unity" version="3.5.1405-prerelease" targetFramework="xamarinios10" /> <package id="Unity" version="3.5.1405-prerelease" targetFramework="xamarinios10" />
<package id="Validation" version="2.2.8" targetFramework="xamarinios10" /> <package id="Validation" version="2.2.8" targetFramework="xamarinios10" />
<package id="Xam.Plugin.Connectivity" version="2.2.12" targetFramework="xamarinios10" /> <package id="Xam.Plugin.Connectivity" version="2.2.12" targetFramework="xamarinios10" />
<package id="Xam.Plugin.DeviceInfo" version="2.0.2" targetFramework="xamarinios10" />
<package id="Xam.Plugin.PushNotification" version="1.2.2" targetFramework="xamarinios10" developmentDependency="true" /> <package id="Xam.Plugin.PushNotification" version="1.2.2" targetFramework="xamarinios10" developmentDependency="true" />
<package id="Xam.Plugins.Settings" version="2.1.0" targetFramework="xamarinios10" /> <package id="Xam.Plugins.Settings" version="2.1.0" targetFramework="xamarinios10" />
<package id="Xamarin.Build.Download" version="0.2.2-beta2" targetFramework="xamarinios10" /> <package id="Xamarin.Build.Download" version="0.2.2-beta2" targetFramework="xamarinios10" />

View File

@ -216,6 +216,42 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f0100b4 // aapt resource value: 0x7f0100b4
public const int activityChooserViewStyle = 2130772148; 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 // aapt resource value: 0x7f0100d7
public const int alertDialogButtonGroupStyle = 2130772183; public const int alertDialogButtonGroupStyle = 2130772183;
@ -1052,32 +1088,32 @@ namespace Bit.Android.Test
public partial class Color public partial class Color
{ {
// aapt resource value: 0x7f0c0048 // aapt resource value: 0x7f0c0052
public const int abc_background_cache_hint_selector_material_dark = 2131492936; public const int abc_background_cache_hint_selector_material_dark = 2131492946;
// aapt resource value: 0x7f0c0049 // aapt resource value: 0x7f0c0053
public const int abc_background_cache_hint_selector_material_light = 2131492937; public const int abc_background_cache_hint_selector_material_light = 2131492947;
// aapt resource value: 0x7f0c004a // aapt resource value: 0x7f0c0054
public const int abc_color_highlight_material = 2131492938; public const int abc_color_highlight_material = 2131492948;
// aapt resource value: 0x7f0c000e // aapt resource value: 0x7f0c000e
public const int abc_input_method_navigation_guard = 2131492878; public const int abc_input_method_navigation_guard = 2131492878;
// aapt resource value: 0x7f0c004b // aapt resource value: 0x7f0c0055
public const int abc_primary_text_disable_only_material_dark = 2131492939; public const int abc_primary_text_disable_only_material_dark = 2131492949;
// aapt resource value: 0x7f0c004c // aapt resource value: 0x7f0c0056
public const int abc_primary_text_disable_only_material_light = 2131492940; public const int abc_primary_text_disable_only_material_light = 2131492950;
// aapt resource value: 0x7f0c004d // aapt resource value: 0x7f0c0057
public const int abc_primary_text_material_dark = 2131492941; public const int abc_primary_text_material_dark = 2131492951;
// aapt resource value: 0x7f0c004e // aapt resource value: 0x7f0c0058
public const int abc_primary_text_material_light = 2131492942; public const int abc_primary_text_material_light = 2131492952;
// aapt resource value: 0x7f0c004f // aapt resource value: 0x7f0c0059
public const int abc_search_url_text = 2131492943; public const int abc_search_url_text = 2131492953;
// aapt resource value: 0x7f0c000f // aapt resource value: 0x7f0c000f
public const int abc_search_url_text_normal = 2131492879; public const int abc_search_url_text_normal = 2131492879;
@ -1088,11 +1124,11 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f0c0011 // aapt resource value: 0x7f0c0011
public const int abc_search_url_text_selected = 2131492881; public const int abc_search_url_text_selected = 2131492881;
// aapt resource value: 0x7f0c0050 // aapt resource value: 0x7f0c005a
public const int abc_secondary_text_material_dark = 2131492944; public const int abc_secondary_text_material_dark = 2131492954;
// aapt resource value: 0x7f0c0051 // aapt resource value: 0x7f0c005b
public const int abc_secondary_text_material_light = 2131492945; public const int abc_secondary_text_material_light = 2131492955;
// aapt resource value: 0x7f0c0012 // aapt resource value: 0x7f0c0012
public const int accent_material_dark = 2131492882; public const int accent_material_dark = 2131492882;
@ -1208,6 +1244,36 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f0c0029 // aapt resource value: 0x7f0c0029
public const int hint_foreground_material_light = 2131492905; 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 // aapt resource value: 0x7f0c002a
public const int material_blue_grey_800 = 2131492906; public const int material_blue_grey_800 = 2131492906;
@ -1292,11 +1358,11 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f0c0045 // aapt resource value: 0x7f0c0045
public const int switch_thumb_disabled_material_light = 2131492933; public const int switch_thumb_disabled_material_light = 2131492933;
// aapt resource value: 0x7f0c0052 // aapt resource value: 0x7f0c005c
public const int switch_thumb_material_dark = 2131492946; public const int switch_thumb_material_dark = 2131492956;
// aapt resource value: 0x7f0c0053 // aapt resource value: 0x7f0c005d
public const int switch_thumb_material_light = 2131492947; public const int switch_thumb_material_light = 2131492957;
// aapt resource value: 0x7f0c0046 // aapt resource value: 0x7f0c0046
public const int switch_thumb_normal_material_dark = 2131492934; public const int switch_thumb_normal_material_dark = 2131492934;
@ -1892,10 +1958,28 @@ namespace Bit.Android.Test
public const int design_snackbar_background = 2130837580; public const int design_snackbar_background = 2130837580;
// aapt resource value: 0x7f02004d // aapt resource value: 0x7f02004d
public const int icon = 2130837581; public const int fingerprint_white = 2130837581;
// aapt resource value: 0x7f02004e // aapt resource value: 0x7f02004e
public const int notification_template_icon_bg = 2130837582; public const int hockeyapp_btn_background = 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;
static Drawable() static Drawable()
{ {
@ -1910,62 +1994,62 @@ namespace Bit.Android.Test
public partial class Id public partial class Id
{ {
// aapt resource value: 0x7f080082 // aapt resource value: 0x7f0800a4
public const int OptionHostName = 2131230850; public const int OptionHostName = 2131230884;
// aapt resource value: 0x7f080083 // aapt resource value: 0x7f0800a5
public const int OptionPort = 2131230851; public const int OptionPort = 2131230885;
// aapt resource value: 0x7f080081 // aapt resource value: 0x7f0800a3
public const int OptionRemoteServer = 2131230849; public const int OptionRemoteServer = 2131230883;
// aapt resource value: 0x7f080091 // aapt resource value: 0x7f0800b3
public const int OptionsButton = 2131230865; public const int OptionsButton = 2131230899;
// aapt resource value: 0x7f08008c // aapt resource value: 0x7f0800ae
public const int ResultFullName = 2131230860; public const int ResultFullName = 2131230894;
// aapt resource value: 0x7f08008e // aapt resource value: 0x7f0800b0
public const int ResultMessage = 2131230862; public const int ResultMessage = 2131230896;
// aapt resource value: 0x7f08008d // aapt resource value: 0x7f0800af
public const int ResultResultState = 2131230861; public const int ResultResultState = 2131230895;
// aapt resource value: 0x7f08008b // aapt resource value: 0x7f0800ad
public const int ResultRunSingleMethodTest = 2131230859; public const int ResultRunSingleMethodTest = 2131230893;
// aapt resource value: 0x7f08008f // aapt resource value: 0x7f0800b1
public const int ResultStackTrace = 2131230863; public const int ResultStackTrace = 2131230897;
// aapt resource value: 0x7f080087 // aapt resource value: 0x7f0800a9
public const int ResultsFailed = 2131230855; public const int ResultsFailed = 2131230889;
// aapt resource value: 0x7f080084 // aapt resource value: 0x7f0800a6
public const int ResultsId = 2131230852; public const int ResultsId = 2131230886;
// aapt resource value: 0x7f080088 // aapt resource value: 0x7f0800aa
public const int ResultsIgnored = 2131230856; public const int ResultsIgnored = 2131230890;
// aapt resource value: 0x7f080089 // aapt resource value: 0x7f0800ab
public const int ResultsInconclusive = 2131230857; public const int ResultsInconclusive = 2131230891;
// aapt resource value: 0x7f08008a // aapt resource value: 0x7f0800ac
public const int ResultsMessage = 2131230858; public const int ResultsMessage = 2131230892;
// aapt resource value: 0x7f080086 // aapt resource value: 0x7f0800a8
public const int ResultsPassed = 2131230854; public const int ResultsPassed = 2131230888;
// aapt resource value: 0x7f080085 // aapt resource value: 0x7f0800a7
public const int ResultsResult = 2131230853; public const int ResultsResult = 2131230887;
// aapt resource value: 0x7f080090 // aapt resource value: 0x7f0800b2
public const int RunTestsButton = 2131230864; public const int RunTestsButton = 2131230898;
// aapt resource value: 0x7f080092 // aapt resource value: 0x7f0800b4
public const int TestSuiteListView = 2131230866; public const int TestSuiteListView = 2131230900;
// aapt resource value: 0x7f080074 // aapt resource value: 0x7f080096
public const int action0 = 2131230836; public const int action0 = 2131230870;
// aapt resource value: 0x7f08005c // aapt resource value: 0x7f08005c
public const int action_bar = 2131230812; public const int action_bar = 2131230812;
@ -1991,8 +2075,8 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f08005d // aapt resource value: 0x7f08005d
public const int action_context_bar = 2131230813; public const int action_context_bar = 2131230813;
// aapt resource value: 0x7f080078 // aapt resource value: 0x7f08009a
public const int action_divider = 2131230840; public const int action_divider = 2131230874;
// aapt resource value: 0x7f080004 // aapt resource value: 0x7f080004
public const int action_menu_divider = 2131230724; public const int action_menu_divider = 2131230724;
@ -2033,8 +2117,26 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f080046 // aapt resource value: 0x7f080046
public const int buttonPanel = 2131230790; public const int buttonPanel = 2131230790;
// aapt resource value: 0x7f080075 // aapt resource value: 0x7f080083
public const int cancel_action = 2131230837; public const int button_add_response = 2131230851;
// aapt resource value: 0x7f08007e
public const int button_attachment = 2131230846;
// aapt resource value: 0x7f080088
public const int button_login = 2131230856;
// aapt resource value: 0x7f080084
public const int button_refresh = 2131230852;
// aapt resource value: 0x7f08007f
public const int button_send = 2131230847;
// aapt resource value: 0x7f08008c
public const int button_update = 2131230860;
// aapt resource value: 0x7f080097
public const int cancel_action = 2131230871;
// aapt resource value: 0x7f080016 // aapt resource value: 0x7f080016
public const int center = 2131230742; public const int center = 2131230742;
@ -2048,8 +2150,8 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f080054 // aapt resource value: 0x7f080054
public const int checkbox = 2131230804; public const int checkbox = 2131230804;
// aapt resource value: 0x7f08007b // aapt resource value: 0x7f08009d
public const int chronometer = 2131230843; public const int chronometer = 2131230877;
// aapt resource value: 0x7f08001f // aapt resource value: 0x7f08001f
public const int clip_horizontal = 2131230751; public const int clip_horizontal = 2131230751;
@ -2099,8 +2201,8 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f080019 // aapt resource value: 0x7f080019
public const int end = 2131230745; public const int end = 2131230745;
// aapt resource value: 0x7f080080 // aapt resource value: 0x7f0800a2
public const int end_padder = 2131230848; public const int end_padder = 2131230882;
// aapt resource value: 0x7f08000e // aapt resource value: 0x7f08000e
public const int enterAlways = 2131230734; public const int enterAlways = 2131230734;
@ -2126,6 +2228,12 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f08001a // aapt resource value: 0x7f08001a
public const int fill_vertical = 2131230746; public const int fill_vertical = 2131230746;
// aapt resource value: 0x7f080075
public const int fingerprint_btnCancel = 2131230837;
// aapt resource value: 0x7f080074
public const int fingerprint_txtReason = 2131230836;
// aapt resource value: 0x7f080025 // aapt resource value: 0x7f080025
public const int @fixed = 2131230757; public const int @fixed = 2131230757;
@ -2144,29 +2252,80 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f080041 // aapt resource value: 0x7f080041
public const int image = 2131230785; public const int image = 2131230785;
// aapt resource value: 0x7f08007f // aapt resource value: 0x7f0800a1
public const int info = 2131230847; public const int info = 2131230881;
// aapt resource value: 0x7f08007a
public const int input_email = 2131230842;
// aapt resource value: 0x7f08007c
public const int input_message = 2131230844;
// aapt resource value: 0x7f080079
public const int input_name = 2131230841;
// aapt resource value: 0x7f080087
public const int input_password = 2131230855;
// aapt resource value: 0x7f08007b
public const int input_subject = 2131230843;
// aapt resource value: 0x7f080000 // aapt resource value: 0x7f080000
public const int item_touch_helper_previous_elevation = 2131230720; public const int item_touch_helper_previous_elevation = 2131230720;
// aapt resource value: 0x7f08008e
public const int label_author = 2131230862;
// aapt resource value: 0x7f08008f
public const int label_date = 2131230863;
// aapt resource value: 0x7f080081
public const int label_last_updated = 2131230849;
// aapt resource value: 0x7f080076
public const int label_message = 2131230838;
// aapt resource value: 0x7f080090
public const int label_text = 2131230864;
// aapt resource value: 0x7f08008a
public const int label_title = 2131230858;
// aapt resource value: 0x7f08008b
public const int label_version = 2131230859;
// aapt resource value: 0x7f08001b // aapt resource value: 0x7f08001b
public const int left = 2131230747; public const int left = 2131230747;
// aapt resource value: 0x7f080079 // aapt resource value: 0x7f08009b
public const int line1 = 2131230841; public const int line1 = 2131230875;
// aapt resource value: 0x7f08007d // aapt resource value: 0x7f08009f
public const int line3 = 2131230845; public const int line3 = 2131230879;
// aapt resource value: 0x7f080027 // aapt resource value: 0x7f080027
public const int listMode = 2131230759; public const int listMode = 2131230759;
// aapt resource value: 0x7f080091
public const int list_attachments = 2131230865;
// aapt resource value: 0x7f080085
public const int list_feedback_messages = 2131230853;
// aapt resource value: 0x7f080043 // aapt resource value: 0x7f080043
public const int list_item = 2131230787; public const int list_item = 2131230787;
// aapt resource value: 0x7f080077 // aapt resource value: 0x7f080094
public const int media_actions = 2131230839; public const int loadingImage = 2131230868;
// aapt resource value: 0x7f080092
public const int loadingProgressBar = 2131230866;
// aapt resource value: 0x7f080095
public const int loadingProgressWheel = 2131230869;
// aapt resource value: 0x7f080099
public const int media_actions = 2131230873;
// aapt resource value: 0x7f080036 // aapt resource value: 0x7f080036
public const int middle = 2131230774; public const int middle = 2131230774;
@ -2300,8 +2459,8 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f08001d // aapt resource value: 0x7f08001d
public const int start = 2131230749; public const int start = 2131230749;
// aapt resource value: 0x7f080076 // aapt resource value: 0x7f080098
public const int status_bar_latest_event_content = 2131230838; public const int status_bar_latest_event_content = 2131230872;
// aapt resource value: 0x7f080067 // aapt resource value: 0x7f080067
public const int submit_area = 2131230823; public const int submit_area = 2131230823;
@ -2309,17 +2468,23 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f080028 // aapt resource value: 0x7f080028
public const int tabMode = 2131230760; public const int tabMode = 2131230760;
// aapt resource value: 0x7f08007e // aapt resource value: 0x7f0800a0
public const int text = 2131230846; public const int text = 2131230880;
// aapt resource value: 0x7f08007c // aapt resource value: 0x7f08009e
public const int text2 = 2131230844; public const int text2 = 2131230878;
// aapt resource value: 0x7f08004f // aapt resource value: 0x7f08004f
public const int textSpacerNoButtons = 2131230799; public const int textSpacerNoButtons = 2131230799;
// aapt resource value: 0x7f08007a // aapt resource value: 0x7f080093
public const int time = 2131230842; public const int textViewStatus = 2131230867;
// aapt resource value: 0x7f080086
public const int text_headline = 2131230854;
// aapt resource value: 0x7f08009c
public const int time = 2131230876;
// aapt resource value: 0x7f080045 // aapt resource value: 0x7f080045
public const int title = 2131230789; public const int title = 2131230789;
@ -2342,15 +2507,36 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f08002e // aapt resource value: 0x7f08002e
public const int useLogo = 2131230766; public const int useLogo = 2131230766;
// aapt resource value: 0x7f080089
public const int view_header = 2131230857;
// aapt resource value: 0x7f080001 // aapt resource value: 0x7f080001
public const int view_offset_helper = 2131230721; public const int view_offset_helper = 2131230721;
// aapt resource value: 0x7f08008d
public const int web_update_details = 2131230861;
// aapt resource value: 0x7f08003b // aapt resource value: 0x7f08003b
public const int withText = 2131230779; public const int withText = 2131230779;
// aapt resource value: 0x7f08002f // aapt resource value: 0x7f08002f
public const int wrap_content = 2131230767; public const int wrap_content = 2131230767;
// aapt resource value: 0x7f08007d
public const int wrapper_attachments = 2131230845;
// aapt resource value: 0x7f080078
public const int wrapper_feedback = 2131230840;
// aapt resource value: 0x7f080077
public const int wrapper_feedback_scroll = 2131230839;
// aapt resource value: 0x7f080080
public const int wrapper_messages = 2131230848;
// aapt resource value: 0x7f080082
public const int wrapper_messages_buttons = 2131230850;
static Id() static Id()
{ {
global::Android.Runtime.ResourceIdManager.UpdateIdValues(); global::Android.Runtime.ResourceIdManager.UpdateIdValues();
@ -2513,52 +2699,82 @@ namespace Bit.Android.Test
public const int design_navigation_menu_item = 2130903076; public const int design_navigation_menu_item = 2130903076;
// aapt resource value: 0x7f030025 // aapt resource value: 0x7f030025
public const int notification_media_action = 2130903077; public const int FingerprintDialog = 2130903077;
// aapt resource value: 0x7f030026 // aapt resource value: 0x7f030026
public const int notification_media_cancel_action = 2130903078; public const int hockeyapp_activity_expiry_info = 2130903078;
// aapt resource value: 0x7f030027 // aapt resource value: 0x7f030027
public const int notification_template_big_media = 2130903079; public const int hockeyapp_activity_feedback = 2130903079;
// aapt resource value: 0x7f030028 // aapt resource value: 0x7f030028
public const int notification_template_big_media_narrow = 2130903080; public const int hockeyapp_activity_login = 2130903080;
// aapt resource value: 0x7f030029 // aapt resource value: 0x7f030029
public const int notification_template_lines = 2130903081; public const int hockeyapp_activity_update = 2130903081;
// aapt resource value: 0x7f03002a // aapt resource value: 0x7f03002a
public const int notification_template_media = 2130903082; public const int hockeyapp_fragment_update = 2130903082;
// aapt resource value: 0x7f03002b // aapt resource value: 0x7f03002b
public const int notification_template_part_chronometer = 2130903083; public const int hockeyapp_view_feedback_message = 2130903083;
// aapt resource value: 0x7f03002c // aapt resource value: 0x7f03002c
public const int notification_template_part_time = 2130903084; public const int loading = 2130903084;
// aapt resource value: 0x7f03002d // aapt resource value: 0x7f03002d
public const int options = 2130903085; public const int loadingimage = 2130903085;
// aapt resource value: 0x7f03002e // aapt resource value: 0x7f03002e
public const int results = 2130903086; public const int loadingprogress = 2130903086;
// aapt resource value: 0x7f03002f // aapt resource value: 0x7f03002f
public const int select_dialog_item_material = 2130903087; public const int notification_media_action = 2130903087;
// aapt resource value: 0x7f030030 // aapt resource value: 0x7f030030
public const int select_dialog_multichoice_material = 2130903088; public const int notification_media_cancel_action = 2130903088;
// aapt resource value: 0x7f030031 // aapt resource value: 0x7f030031
public const int select_dialog_singlechoice_material = 2130903089; public const int notification_template_big_media = 2130903089;
// aapt resource value: 0x7f030032 // aapt resource value: 0x7f030032
public const int support_simple_spinner_dropdown_item = 2130903090; public const int notification_template_big_media_narrow = 2130903090;
// aapt resource value: 0x7f030033 // aapt resource value: 0x7f030033
public const int test_result = 2130903091; public const int notification_template_lines = 2130903091;
// aapt resource value: 0x7f030034 // aapt resource value: 0x7f030034
public const int test_suite = 2130903092; public const int notification_template_media = 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;
static Layout() static Layout()
{ {
@ -2589,11 +2805,11 @@ namespace Bit.Android.Test
public partial class String public partial class String
{ {
// aapt resource value: 0x7f09001b // aapt resource value: 0x7f09001c
public const int ApplicationName = 2131296283; public const int ApplicationName = 2131296284;
// aapt resource value: 0x7f09001a // aapt resource value: 0x7f09001b
public const int Hello = 2131296282; public const int Hello = 2131296283;
// aapt resource value: 0x7f090006 // aapt resource value: 0x7f090006
public const int abc_action_bar_home_description = 2131296262; public const int abc_action_bar_home_description = 2131296262;
@ -2670,6 +2886,222 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f090002 // aapt resource value: 0x7f090002
public const int common_google_play_services_unknown_issue = 2131296258; public const int common_google_play_services_unknown_issue = 2131296258;
// aapt resource value: 0x7f09001d
public const int hockeyapp_crash_dialog_app_name_fallback = 2131296285;
// aapt resource value: 0x7f09001e
public const int hockeyapp_crash_dialog_message = 2131296286;
// aapt resource value: 0x7f09001f
public const int hockeyapp_crash_dialog_negative_button = 2131296287;
// aapt resource value: 0x7f090020
public const int hockeyapp_crash_dialog_neutral_button = 2131296288;
// aapt resource value: 0x7f090021
public const int hockeyapp_crash_dialog_positive_button = 2131296289;
// aapt resource value: 0x7f090022
public const int hockeyapp_crash_dialog_title = 2131296290;
// aapt resource value: 0x7f090023
public const int hockeyapp_dialog_error_message = 2131296291;
// aapt resource value: 0x7f090024
public const int hockeyapp_dialog_error_title = 2131296292;
// aapt resource value: 0x7f090025
public const int hockeyapp_dialog_negative_button = 2131296293;
// aapt resource value: 0x7f090026
public const int hockeyapp_dialog_positive_button = 2131296294;
// aapt resource value: 0x7f090027
public const int hockeyapp_download_failed_dialog_message = 2131296295;
// aapt resource value: 0x7f090028
public const int hockeyapp_download_failed_dialog_negative_button = 2131296296;
// aapt resource value: 0x7f090029
public const int hockeyapp_download_failed_dialog_positive_button = 2131296297;
// aapt resource value: 0x7f09002a
public const int hockeyapp_download_failed_dialog_title = 2131296298;
// aapt resource value: 0x7f09002b
public const int hockeyapp_error_no_network_message = 2131296299;
// aapt resource value: 0x7f09002c
public const int hockeyapp_expiry_info_text = 2131296300;
// aapt resource value: 0x7f09002d
public const int hockeyapp_expiry_info_title = 2131296301;
// aapt resource value: 0x7f09002e
public const int hockeyapp_feedback_attach_file = 2131296302;
// aapt resource value: 0x7f09002f
public const int hockeyapp_feedback_attach_picture = 2131296303;
// aapt resource value: 0x7f090030
public const int hockeyapp_feedback_attachment_button_text = 2131296304;
// aapt resource value: 0x7f090031
public const int hockeyapp_feedback_attachment_error = 2131296305;
// aapt resource value: 0x7f090032
public const int hockeyapp_feedback_attachment_loading = 2131296306;
// aapt resource value: 0x7f090033
public const int hockeyapp_feedback_email_hint = 2131296307;
// aapt resource value: 0x7f090034
public const int hockeyapp_feedback_failed_text = 2131296308;
// aapt resource value: 0x7f090035
public const int hockeyapp_feedback_failed_title = 2131296309;
// aapt resource value: 0x7f090036
public const int hockeyapp_feedback_fetching_feedback_text = 2131296310;
// aapt resource value: 0x7f090037
public const int hockeyapp_feedback_generic_error = 2131296311;
// aapt resource value: 0x7f090038
public const int hockeyapp_feedback_last_updated_text = 2131296312;
// aapt resource value: 0x7f090039
public const int hockeyapp_feedback_max_attachments_allowed = 2131296313;
// aapt resource value: 0x7f09003a
public const int hockeyapp_feedback_message_hint = 2131296314;
// aapt resource value: 0x7f09003b
public const int hockeyapp_feedback_name_hint = 2131296315;
// aapt resource value: 0x7f09003c
public const int hockeyapp_feedback_refresh_button_text = 2131296316;
// aapt resource value: 0x7f09003d
public const int hockeyapp_feedback_response_button_text = 2131296317;
// aapt resource value: 0x7f09003e
public const int hockeyapp_feedback_select_file = 2131296318;
// aapt resource value: 0x7f09003f
public const int hockeyapp_feedback_select_picture = 2131296319;
// aapt resource value: 0x7f090040
public const int hockeyapp_feedback_send_button_text = 2131296320;
// aapt resource value: 0x7f090041
public const int hockeyapp_feedback_send_generic_error = 2131296321;
// aapt resource value: 0x7f090042
public const int hockeyapp_feedback_send_network_error = 2131296322;
// aapt resource value: 0x7f090043
public const int hockeyapp_feedback_sending_feedback_text = 2131296323;
// aapt resource value: 0x7f090044
public const int hockeyapp_feedback_subject_hint = 2131296324;
// aapt resource value: 0x7f090045
public const int hockeyapp_feedback_title = 2131296325;
// aapt resource value: 0x7f090046
public const int hockeyapp_feedback_validate_email_empty = 2131296326;
// aapt resource value: 0x7f090047
public const int hockeyapp_feedback_validate_email_error = 2131296327;
// aapt resource value: 0x7f090048
public const int hockeyapp_feedback_validate_name_error = 2131296328;
// aapt resource value: 0x7f090049
public const int hockeyapp_feedback_validate_subject_error = 2131296329;
// aapt resource value: 0x7f09004a
public const int hockeyapp_feedback_validate_text_error = 2131296330;
// aapt resource value: 0x7f09004b
public const int hockeyapp_login_email_hint = 2131296331;
// aapt resource value: 0x7f09004c
public const int hockeyapp_login_headline_text = 2131296332;
// aapt resource value: 0x7f09004d
public const int hockeyapp_login_headline_text_email_only = 2131296333;
// aapt resource value: 0x7f09004e
public const int hockeyapp_login_login_button_text = 2131296334;
// aapt resource value: 0x7f09004f
public const int hockeyapp_login_missing_credentials_toast = 2131296335;
// aapt resource value: 0x7f090050
public const int hockeyapp_login_password_hint = 2131296336;
// aapt resource value: 0x7f090051
public const int hockeyapp_paint_dialog_message = 2131296337;
// aapt resource value: 0x7f090052
public const int hockeyapp_paint_dialog_negative_button = 2131296338;
// aapt resource value: 0x7f090053
public const int hockeyapp_paint_dialog_neutral_button = 2131296339;
// aapt resource value: 0x7f090054
public const int hockeyapp_paint_dialog_positive_button = 2131296340;
// aapt resource value: 0x7f090055
public const int hockeyapp_paint_indicator_toast = 2131296341;
// aapt resource value: 0x7f090056
public const int hockeyapp_paint_menu_clear = 2131296342;
// aapt resource value: 0x7f090057
public const int hockeyapp_paint_menu_save = 2131296343;
// aapt resource value: 0x7f090058
public const int hockeyapp_paint_menu_undo = 2131296344;
// aapt resource value: 0x7f090059
public const int hockeyapp_permission_dialog_negative_button = 2131296345;
// aapt resource value: 0x7f09005a
public const int hockeyapp_permission_dialog_positive_button = 2131296346;
// aapt resource value: 0x7f09005b
public const int hockeyapp_permission_update_message = 2131296347;
// aapt resource value: 0x7f09005c
public const int hockeyapp_permission_update_title = 2131296348;
// aapt resource value: 0x7f09005d
public const int hockeyapp_update_button = 2131296349;
// aapt resource value: 0x7f09005e
public const int hockeyapp_update_dialog_message = 2131296350;
// aapt resource value: 0x7f09005f
public const int hockeyapp_update_dialog_negative_button = 2131296351;
// aapt resource value: 0x7f090060
public const int hockeyapp_update_dialog_positive_button = 2131296352;
// aapt resource value: 0x7f090061
public const int hockeyapp_update_dialog_title = 2131296353;
// aapt resource value: 0x7f090062
public const int hockeyapp_update_mandatory_toast = 2131296354;
// aapt resource value: 0x7f090063
public const int hockeyapp_update_version_details_label = 2131296355;
// aapt resource value: 0x7f09001a
public const int library_name = 2131296282;
// aapt resource value: 0x7f090019 // aapt resource value: 0x7f090019
public const int status_bar_notification_info_overflow = 2131296281; public const int status_bar_notification_info_overflow = 2131296281;
@ -3133,14 +3565,14 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f0b0006 // aapt resource value: 0x7f0b0006
public const int Base_Widget_Design_TabLayout = 2131427334; public const int Base_Widget_Design_TabLayout = 2131427334;
// aapt resource value: 0x7f0b015c // aapt resource value: 0x7f0b015f
public const int BitwardenTheme = 2131427676; public const int BitwardenTheme = 2131427679;
// aapt resource value: 0x7f0b015d // aapt resource value: 0x7f0b0160
public const int BitwardenTheme_Base = 2131427677; public const int BitwardenTheme_Base = 2131427680;
// aapt resource value: 0x7f0b015b // aapt resource value: 0x7f0b015e
public const int BitwardenTheme_Splash = 2131427675; public const int BitwardenTheme_Splash = 2131427678;
// aapt resource value: 0x7f0b0000 // aapt resource value: 0x7f0b0000
public const int CardView = 2131427328; public const int CardView = 2131427328;
@ -3151,6 +3583,15 @@ namespace Bit.Android.Test
// aapt resource value: 0x7f0b0003 // aapt resource value: 0x7f0b0003
public const int CardView_Light = 2131427331; 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 // aapt resource value: 0x7f0b0034
public const int Platform_AppCompat = 2131427380; public const int Platform_AppCompat = 2131427380;
@ -4993,6 +5434,56 @@ namespace Bit.Android.Test
// aapt resource value: 0 // aapt resource value: 0
public const int PopupWindowBackgroundState_state_above_anchor = 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[] { public static int[] RecyclerView = new int[] {
16842948, 16842948,
2130771968, 2130771968,