From 3239131a8434f9ce4fb4c2baa5d2b7eae34fc5b2 Mon Sep 17 00:00:00 2001 From: Philipp Crocoll Date: Sat, 8 Nov 2014 21:29:36 +0100 Subject: [PATCH] Key files can be opened from deliberate locations TODO: fix a problem with .kdb-files and key files Added very basic and not yet functional AndroidContentStorage.cs --- .gitignore | 2 + .../KeePassLib2Android.csproj | 2 +- src/KeePassLib2Android/Keys/KcpKeyFile.cs | 35 +- .../Io/AndroidContentStorage.cs | 183 + .../Kp2aBusinessLogic.csproj | 3 +- src/java/InputStickAPI/project.properties | 2 +- .../KP2AKdbLibrary/bin/kp2akdblibrary.jar | Bin 374847 -> 374659 bytes .../keepassdroid/database/PwDatabaseV3.java | 83 +- .../database/load/ImporterV3.java | 8 +- .../bin/keepass2androidpluginsdk.jar | Bin 20359 -> 20359 bytes src/keepass2android/CreateDatabaseActivity.cs | 4 +- src/keepass2android/EntryEditActivity.cs | 4 +- src/keepass2android/ExportDatabaseActivity.cs | 4 +- .../FileStorageSelectionActivity.cs | 5 +- src/keepass2android/PasswordActivity.cs | 139 +- .../Resources/Resource.designer.cs | 6126 ++++++++--------- .../Resources/layout/password.xml | 60 +- .../Resources/values/strings.xml | 4 + .../SelectStorageLocationActivity.cs | 245 + src/keepass2android/Utils/Util.cs | 39 +- src/keepass2android/app/App.cs | 3 +- .../fileselect/FileSelectActivity.cs | 117 +- .../fileselect/FileStorageSetupActivity.cs | 6 + src/keepass2android/keepass2android.csproj | 12 +- 24 files changed, 3636 insertions(+), 3450 deletions(-) create mode 100644 src/Kp2aBusinessLogic/Io/AndroidContentStorage.cs create mode 100644 src/keepass2android/SelectStorageLocationActivity.cs diff --git a/.gitignore b/.gitignore index ec4e4d19..15afed1a 100644 --- a/.gitignore +++ b/.gitignore @@ -282,3 +282,5 @@ Thumbs.db /src/java/MasterKee /src/PluginSdkBinding/obj/ReleaseNoNet +/src/MasterKeeWinPlugin/bin/Release +/src/SamplePlugin diff --git a/src/KeePassLib2Android/KeePassLib2Android.csproj b/src/KeePassLib2Android/KeePassLib2Android.csproj index d6516bda..9f86c555 100644 --- a/src/KeePassLib2Android/KeePassLib2Android.csproj +++ b/src/KeePassLib2Android/KeePassLib2Android.csproj @@ -20,7 +20,7 @@ full False bin\Debug - DEBUG;EXCLUDE_TWOFISH;INCLUDE_KEYBOARD;EXCLUDE_FILECHOOSER;EXCLUDE_JAVAFILESTORAGE;EXCLUDE_KEYTRANSFORM + DEBUG;EXCLUDE_TWOFISH;EXCLUDE_KEYBOARD;EXCLUDE_FILECHOOSER;EXCLUDE_JAVAFILESTORAGE;INCLUDE_KEYTRANSFORM prompt 4 False diff --git a/src/KeePassLib2Android/Keys/KcpKeyFile.cs b/src/KeePassLib2Android/Keys/KcpKeyFile.cs index edbc949d..39810ff3 100644 --- a/src/KeePassLib2Android/Keys/KcpKeyFile.cs +++ b/src/KeePassLib2Android/Keys/KcpKeyFile.cs @@ -41,7 +41,7 @@ namespace KeePassLib.Keys /// public sealed class KcpKeyFile : IUserKey { - private string m_strPath; + private IOConnectionInfo m_ioc; private ProtectedBinary m_pbKeyData; /// @@ -49,7 +49,7 @@ namespace KeePassLib.Keys /// public string Path { - get { return m_strPath; } + get { return m_ioc.Path; } } /// @@ -62,6 +62,11 @@ namespace KeePassLib.Keys get { return m_pbKeyData; } } + public IOConnectionInfo Ioc + { + get { return m_ioc; } + } + public KcpKeyFile(string strKeyFile) { Construct(IOConnectionInfo.FromPath(strKeyFile), false); @@ -82,17 +87,21 @@ namespace KeePassLib.Keys Construct(iocKeyFile, bThrowIfDbFile); } - private void Construct(IOConnectionInfo iocFile, bool bThrowIfDbFile) + public KcpKeyFile(byte[] keyFileContents, IOConnectionInfo iocKeyFile, bool bThrowIfDbFile) { - byte[] pbFileData = IOConnection.ReadFile(iocFile); - if(pbFileData == null) throw new Java.IO.FileNotFoundException(); + Construct(keyFileContents, iocKeyFile, bThrowIfDbFile); + } - if(bThrowIfDbFile && (pbFileData.Length >= 8)) + private void Construct(byte[] pbFileData, IOConnectionInfo iocKeyFile, bool bThrowIfDbFile) + { + if (pbFileData == null) throw new Java.IO.FileNotFoundException(); + + if (bThrowIfDbFile && (pbFileData.Length >= 8)) { uint uSig1 = MemUtil.BytesToUInt32(MemUtil.Mid(pbFileData, 0, 4)); uint uSig2 = MemUtil.BytesToUInt32(MemUtil.Mid(pbFileData, 4, 4)); - if(((uSig1 == KdbxFile.FileSignature1) && + if (((uSig1 == KdbxFile.FileSignature1) && (uSig2 == KdbxFile.FileSignature2)) || ((uSig1 == KdbxFile.FileSignaturePreRelease1) && (uSig2 == KdbxFile.FileSignaturePreRelease2)) || @@ -106,16 +115,22 @@ namespace KeePassLib.Keys } byte[] pbKey = LoadXmlKeyFile(pbFileData); - if(pbKey == null) pbKey = LoadKeyFile(pbFileData); + if (pbKey == null) pbKey = LoadKeyFile(pbFileData); - if(pbKey == null) throw new InvalidOperationException(); + if (pbKey == null) throw new InvalidOperationException(); - m_strPath = iocFile.Path; + m_ioc = iocKeyFile; m_pbKeyData = new ProtectedBinary(true, pbKey); MemUtil.ZeroByteArray(pbKey); } + private void Construct(IOConnectionInfo iocFile, bool bThrowIfDbFile) + { + byte[] pbFileData = IOConnection.ReadFile(iocFile); + Construct(pbFileData, iocFile, bThrowIfDbFile); + } + // public void Clear() // { // m_strPath = string.Empty; diff --git a/src/Kp2aBusinessLogic/Io/AndroidContentStorage.cs b/src/Kp2aBusinessLogic/Io/AndroidContentStorage.cs new file mode 100644 index 00000000..d840b096 --- /dev/null +++ b/src/Kp2aBusinessLogic/Io/AndroidContentStorage.cs @@ -0,0 +1,183 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; + +using Android.App; +using Android.Content; +using Android.OS; +using Android.Runtime; +using Android.Views; +using Android.Widget; +using KeePassLib.Serialization; + +namespace keepass2android.Io +{ + //TODOC,TOTEST, TODO: unimplemented methods? + public class AndroidContentStorage: IFileStorage + { + private readonly Context _ctx; + + public AndroidContentStorage(Context ctx) + { + _ctx = ctx; + } + + public IEnumerable SupportedProtocols + { + get { yield return "content"; } + } + + public void Delete(IOConnectionInfo ioc) + { + throw new NotImplementedException(); + } + + public bool CheckForFileChangeFast(IOConnectionInfo ioc, string previousFileVersion) + { + return false; + } + + public string GetCurrentFileVersionFast(IOConnectionInfo ioc) + { + return null; + } + + public Stream OpenFileForRead(IOConnectionInfo ioc) + { + return _ctx.ContentResolver.OpenInputStream(Android.Net.Uri.Parse(ioc.Path)); + } + + public IWriteTransaction OpenWriteTransaction(IOConnectionInfo ioc, bool useFileTransaction) + { + return new AndroidContentWriteTransaction(ioc.Path, _ctx); + } + + public string GetFilenameWithoutPathAndExt(IOConnectionInfo ioc) + { + return ""; + } + + public bool RequiresCredentials(IOConnectionInfo ioc) + { + return false; + } + + public void CreateDirectory(IOConnectionInfo ioc, string newDirName) + { + throw new NotImplementedException(); + } + + public IEnumerable ListContents(IOConnectionInfo ioc) + { + throw new NotImplementedException(); + } + + public FileDescription GetFileDescription(IOConnectionInfo ioc) + { + throw new NotImplementedException(); + } + + public bool RequiresSetup(IOConnectionInfo ioConnection) + { + return false; + } + + public string IocToPath(IOConnectionInfo ioc) + { + return ioc.Path; + } + + public void StartSelectFile(IFileStorageSetupInitiatorActivity activity, bool isForSave, int requestCode, string protocolId) + { + Intent intent = new Intent(); + activity.IocToIntent(intent, new IOConnectionInfo() { Path = protocolId + "://" }); + activity.OnImmediateResult(requestCode, (int)FileStorageResults.FileChooserPrepared, intent); + } + + public void PrepareFileUsage(IFileStorageSetupInitiatorActivity activity, IOConnectionInfo ioc, int requestCode, + bool alwaysReturnSuccess) + { + Intent intent = new Intent(); + activity.IocToIntent(intent, ioc); + activity.OnImmediateResult(requestCode, (int)FileStorageResults.FileUsagePrepared, intent); + } + + public void OnCreate(IFileStorageSetupActivity activity, Bundle savedInstanceState) + { + throw new NotImplementedException(); + } + + public void OnResume(IFileStorageSetupActivity activity) + { + throw new NotImplementedException(); + } + + public void OnStart(IFileStorageSetupActivity activity) + { + throw new NotImplementedException(); + } + + public void OnActivityResult(IFileStorageSetupActivity activity, int requestCode, int resultCode, Intent data) + { + throw new NotImplementedException(); + } + + public string GetDisplayName(IOConnectionInfo ioc) + { + return ioc.Path; + } + + public string CreateFilePath(string parent, string newFilename) + { + throw new NotImplementedException(); + } + + public IOConnectionInfo GetParentPath(IOConnectionInfo ioc) + { + throw new NotImplementedException(); + } + + public IOConnectionInfo GetFilePath(IOConnectionInfo folderPath, string filename) + { + throw new NotImplementedException(); + } + } + + class AndroidContentWriteTransaction : IWriteTransaction + { + private readonly string _path; + private readonly Context _ctx; + private MemoryStream _memoryStream; + + public AndroidContentWriteTransaction(string path, Context ctx) + { + _path = path; + _ctx = ctx; + } + + public void Dispose() + { + _memoryStream.Dispose(); + } + + public Stream OpenFile() + { + _memoryStream = new MemoryStream(); + return _memoryStream; + } + + public void CommitWrite() + { + using (Stream outputStream = _ctx.ContentResolver.OpenOutputStream(Android.Net.Uri.Parse(_path))) + { + outputStream.Write(_memoryStream.ToArray(), 0, (int)_memoryStream.Length); + } + + + } + } + + +} \ No newline at end of file diff --git a/src/Kp2aBusinessLogic/Kp2aBusinessLogic.csproj b/src/Kp2aBusinessLogic/Kp2aBusinessLogic.csproj index 198d4208..6c7ad4b7 100644 --- a/src/Kp2aBusinessLogic/Kp2aBusinessLogic.csproj +++ b/src/Kp2aBusinessLogic/Kp2aBusinessLogic.csproj @@ -20,7 +20,7 @@ full false bin\Debug\ - TRACE;DEBUG;EXCLUDE_TWOFISH;INCLUDE_KEYBOARD;EXCLUDE_FILECHOOSER;EXCLUDE_JAVAFILESTORAGE;EXCLUDE_KEYTRANSFORM + TRACE;DEBUG;EXCLUDE_TWOFISH;EXCLUDE_KEYBOARD;EXCLUDE_FILECHOOSER;EXCLUDE_JAVAFILESTORAGE;INCLUDE_KEYTRANSFORM prompt 4 @@ -64,6 +64,7 @@ + diff --git a/src/java/InputStickAPI/project.properties b/src/java/InputStickAPI/project.properties index 7e2ca64f..91d2b024 100644 --- a/src/java/InputStickAPI/project.properties +++ b/src/java/InputStickAPI/project.properties @@ -11,5 +11,5 @@ #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt # Project target. -target=android-20 +target=android-19 android.library=true diff --git a/src/java/KP2AKdbLibrary/bin/kp2akdblibrary.jar b/src/java/KP2AKdbLibrary/bin/kp2akdblibrary.jar index 0461a3695b0dd19a9ff6122b98ce768cc2488ec4..35d084ab3530b3866986866ce3cd51992db4ebed 100644 GIT binary patch delta 26331 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 delta 26465 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 0 && keyFileName.length() > 0) { - return getCompositeKey(key, keyFileName); + if (key.length() > 0 && keyfileStream != null) { + return getCompositeKey(key, keyfileStream); } else if (key.length() > 0) { return getPasswordKey(key); - } else if (keyFileName.length() > 0) { - return getFileKey(keyFileName); + } else if (keyfileStream != null) { + return getFileKey(keyfileStream); } else { throw new IllegalArgumentException("Key cannot be empty."); } @@ -514,11 +512,6 @@ public class PwDatabaseV3 { public byte[] getPasswordKey(String key) throws IOException { return getPasswordKey(key, "ISO-8859-1"); } - - protected byte[] loadXmlKeyFile(String fileName) { - return null; - } - public long getNumRounds() { diff --git a/src/java/KP2AKdbLibrary/src/com/keepassdroid/database/load/ImporterV3.java b/src/java/KP2AKdbLibrary/src/com/keepassdroid/database/load/ImporterV3.java index 57d9f734..bc319b7d 100644 --- a/src/java/KP2AKdbLibrary/src/com/keepassdroid/database/load/ImporterV3.java +++ b/src/java/KP2AKdbLibrary/src/com/keepassdroid/database/load/ImporterV3.java @@ -123,13 +123,13 @@ public class ImporterV3 { * @throws InvalidAlgorithmParameterException if error decrypting main file body. * @throws ShortBufferException if error decrypting main file body. */ - public PwDatabaseV3 openDatabase( InputStream inStream, String password, String keyfile ) + public PwDatabaseV3 openDatabase( InputStream inStream, String password, InputStream keyfileStream ) throws IOException, InvalidDBException { - return openDatabase(inStream, password, keyfile, new UpdateStatus()); + return openDatabase(inStream, password, keyfileStream, new UpdateStatus()); } - public PwDatabaseV3 openDatabase( InputStream inStream, String password, String keyfile, UpdateStatus status ) + public PwDatabaseV3 openDatabase( InputStream inStream, String password, InputStream keyfileStream, UpdateStatus status ) throws IOException, InvalidDBException { PwDatabaseV3 newManager; @@ -175,7 +175,7 @@ public class ImporterV3 { } newManager = createDB(); - newManager.setMasterKey( password, keyfile ); + newManager.setMasterKey( password, keyfileStream ); // Select algorithm if( (hdr.flags & PwDbHeaderV3.FLAG_RIJNDAEL) != 0 ) { diff --git a/src/java/Keepass2AndroidPluginSDK/bin/keepass2androidpluginsdk.jar b/src/java/Keepass2AndroidPluginSDK/bin/keepass2androidpluginsdk.jar index e01d050a8314436a0d5c202fce7a3f40477e3d8e..e6e333521129cbfdc9269829e778084ac25a434e 100644 GIT binary patch delta 321 zcmZpl&)7bnkuSiTnMH(wgM)*iYe}%{L_Rl`7i(=@H%6rJgBhC-@Ha7mS(6X&Yfp~x z64=}*RKpIDW0Xo^gRn9cL?Eg*H!AfqL)14ac}!ODk=k6MrUaFnrEw0*%F&(xVQtd; z#R@UvpYcklYhC>*qJVPN2 zWiKeB#w#5n^4u#P!tnC0fhvYEynM3!c8DCKR0CQMI{Ish1g|zER0zvVxD)<`Oj}sN5`#b5K@}_5=uPlin{@ zh!OvcS3)IMo4tWpFqu)xXtIHc=;lXuE>KlkF27k=KrWrE>FETqC*Lz1!Z_s_3SlUF zK^Zk(=@60UUhxoymv;?RF^u8mQw9+^;?oFWc>0z@MSLqD3 { if (defaultPath.StartsWith("sftp://")) - Util.ShowSftpDialog(this, OnReceiveSftpData); + Util.ShowSftpDialog(this, OnReceiveSftpData, () => { }); else - Util.ShowFilenameDialog(this, OnCreateButton, null, false, defaultPath, GetString(Resource.String.enter_filename_details_url), + Util.ShowFilenameDialog(this, OnCreateButton, null, null, false, defaultPath, GetString(Resource.String.enter_filename_details_url), Intents.RequestCodeFileBrowseForOpen); } ), true, RequestCodeDbFilename, protocolId); diff --git a/src/keepass2android/EntryEditActivity.cs b/src/keepass2android/EntryEditActivity.cs index 52dc8bcb..a0a57357 100644 --- a/src/keepass2android/EntryEditActivity.cs +++ b/src/keepass2android/EntryEditActivity.cs @@ -1,4 +1,4 @@ -/* +/* This file is part of Keepass2Android, Copyright 2013 Philipp Crocoll. This file is based on Keepassdroid, Copyright Brian Pellin. Keepass2Android is free software: you can redistribute it and/or modify @@ -682,7 +682,7 @@ namespace keepass2android addBinaryButton.SetCompoundDrawablesWithIntrinsicBounds( Resources.GetDrawable(Android.Resource.Drawable.IcMenuAdd) , null, null, null); addBinaryButton.Click += (sender, e) => { - Util.ShowBrowseDialog("/mnt/sdcard", this, Intents.RequestCodeFileBrowseForBinary, false); + Util.ShowBrowseDialog(this, Intents.RequestCodeFileBrowseForBinary, false); }; binariesGroup.AddView(addBinaryButton,layoutParams); diff --git a/src/keepass2android/ExportDatabaseActivity.cs b/src/keepass2android/ExportDatabaseActivity.cs index bca5cf63..ad942c5b 100644 --- a/src/keepass2android/ExportDatabaseActivity.cs +++ b/src/keepass2android/ExportDatabaseActivity.cs @@ -61,9 +61,9 @@ namespace keepass2android defaultPath => { if (defaultPath.StartsWith("sftp://")) - Util.ShowSftpDialog(this, OnReceiveSftpData); + Util.ShowSftpDialog(this, OnReceiveSftpData, () => { }); else - Util.ShowFilenameDialog(this, OnCreateButton, null, false, defaultPath, GetString(Resource.String.enter_filename_details_url), + Util.ShowFilenameDialog(this, OnCreateButton, null, null, false, defaultPath, GetString(Resource.String.enter_filename_details_url), Intents.RequestCodeFileBrowseForOpen); } ), true, RequestCodeDbFilename, protocolId); diff --git a/src/keepass2android/FileStorageSelectionActivity.cs b/src/keepass2android/FileStorageSelectionActivity.cs index 9f5d3e95..1dc83353 100644 --- a/src/keepass2android/FileStorageSelectionActivity.cs +++ b/src/keepass2android/FileStorageSelectionActivity.cs @@ -14,7 +14,7 @@ namespace keepass2android [Activity (Label = "@string/app_name", ConfigurationChanges=ConfigChanges.Orientation|ConfigChanges.KeyboardHidden , Theme="@style/NoTitleBar")] public class FileStorageSelectionActivity : ListActivity { - private ActivityDesign _design; + private readonly ActivityDesign _design; private FileStorageAdapter _fileStorageAdapter; @@ -42,6 +42,9 @@ namespace keepass2android //put file:// to the top _protocolIds.Remove("file"); _protocolIds.Insert(0, "file"); + //remove "content" (covered by androidget) + _protocolIds.Remove("content"); + if (context.Intent.GetBooleanExtra(AllowThirdPartyAppGet, false)) _protocolIds.Add("androidget"); if (context.Intent.GetBooleanExtra(AllowThirdPartyAppSend, false)) diff --git a/src/keepass2android/PasswordActivity.cs b/src/keepass2android/PasswordActivity.cs index f963be24..2dca2922 100644 --- a/src/keepass2android/PasswordActivity.cs +++ b/src/keepass2android/PasswordActivity.cs @@ -24,6 +24,7 @@ using System.Xml.Serialization; using Android.App; using Android.Content; using Android.Database; +using Android.Graphics.Drawables; using Android.OS; using Android.Runtime; using Android.Views; @@ -86,7 +87,7 @@ namespace keepass2android private const int RequestCodePrepareDbFile = 1000; private const int RequestCodePrepareOtpAuxFile = 1001; private const int RequestCodeChallengeYubikey = 1002; - + private const int RequestCodeSelectKeyfile = 1003; private Task _loadDbTask; private IOConnectionInfo _ioConnection; @@ -136,6 +137,7 @@ namespace keepass2android private ActivityDesign _design; private bool _performingLoad; + public PasswordActivity (IntPtr javaReference, JniHandleOwnership transfer) : base(javaReference, transfer) @@ -258,26 +260,20 @@ namespace keepass2android KcpKeyFile kcpKeyfile = (KcpKeyFile)App.Kp2a.GetDb().KpDatabase.MasterKey.GetUserKey(typeof(KcpKeyFile)); - SetEditText(Resource.Id.pass_keyfile, kcpKeyfile.Path); - + FindViewById(Resource.Id.label_keyfilename).Text = + App.Kp2a.GetFileStorage(kcpKeyfile.Ioc).GetDisplayName(kcpKeyfile.Ioc); + } } App.Kp2a.LockDatabase(false); break; - case Result.Ok: // Key file browse dialog OK'ed. - if (requestCode == Intents.RequestCodeFileBrowseForKeyfile) { - string filename = Util.IntentToFilename(data, this); - if (filename != null) { - if (filename.StartsWith("file://")) { - filename = filename.Substring(7); - } - - filename = URLDecoder.Decode(filename); - - EditText fn = (EditText) FindViewById(Resource.Id.pass_keyfile); - fn.Text = filename; - - } + case Result.Ok: + if (requestCode == RequestCodeSelectKeyfile) + { + IOConnectionInfo ioc = new IOConnectionInfo(); + SetIoConnectionFromIntent(ioc, data); + _keyFileOrProvider = IOConnectionInfo.SerializeToString(ioc); + UpdateKeyfileIocView(); } break; case (Result)FileStorageResults.FileUsagePrepared: @@ -354,6 +350,39 @@ namespace keepass2android } + private void UpdateKeyfileIocView() + { + //store keyfile in the view so that we can show the selected keyfile again if the user switches to another key provider and back to key file + FindViewById(Resource.Id.label_keyfilename).Tag = _keyFileOrProvider; + if (string.IsNullOrEmpty(_keyFileOrProvider)) + { + FindViewById(Resource.Id.filestorage_label).Visibility = ViewStates.Gone; + FindViewById(Resource.Id.filestorage_logo).Visibility = ViewStates.Gone; + FindViewById(Resource.Id.label_keyfilename).Text = Resources.GetString(Resource.String.no_keyfile_selected); + + return; + } + var ioc = IOConnectionInfo.UnserializeFromString(_keyFileOrProvider); + string displayPath = App.Kp2a.GetFileStorage(ioc).GetDisplayName(ioc); + int protocolSeparatorPos = displayPath.IndexOf("://", StringComparison.Ordinal); + string protocolId = protocolSeparatorPos < 0 ? + "file" : displayPath.Substring(0, protocolSeparatorPos); + Drawable drawable = App.Kp2a.GetResourceDrawable("ic_storage_" + protocolId); + FindViewById(Resource.Id.filestorage_logo).SetImageDrawable(drawable); + FindViewById(Resource.Id.filestorage_logo).Visibility = ViewStates.Visible; + + + String title = App.Kp2a.GetResourceString("filestoragename_" + protocolId); + FindViewById(Resource.Id.filestorage_label).Text = title; + FindViewById(Resource.Id.filestorage_label).Visibility = ViewStates.Visible; + + FindViewById(Resource.Id.label_keyfilename).Text = protocolSeparatorPos < 0 ? + displayPath : + displayPath.Substring(protocolSeparatorPos + 3); + + } + + private void LoadOtpFile() { new LoadingDialog(this, true, @@ -543,14 +572,11 @@ namespace keepass2android InitializeFilenameView(); if (KeyProviderType == KeyProviders.KeyFile) - SetEditText(Resource.Id.pass_keyfile, _keyFileOrProvider); + { + UpdateKeyfileIocView(); + } + - FindViewById(Resource.Id.pass_keyfile).TextChanged += - (sender, args) => - { - _keyFileOrProvider = FindViewById(Resource.Id.pass_keyfile).Text; - UpdateOkButtonState(); - }; FindViewById(Resource.Id.password).TextChanged += (sender, args) => @@ -705,20 +731,14 @@ namespace keepass2android private void InitializeKeyfileBrowseButton() { - ImageButton browse = (ImageButton) FindViewById(Resource.Id.browse_button); - browse.Click += (sender, evt) => + var browseButton = (Button)FindViewById(Resource.Id.btn_change_location); + browseButton.Click += (sender, evt) => { - string filename = null; - if (!String.IsNullOrEmpty(_ioConnection.Path)) - { - File keyfile = new File(_ioConnection.Path); - File parent = keyfile.ParentFile; - if (parent != null) - { - filename = parent.AbsolutePath; - } - } - Util.ShowBrowseDialog(filename, this, Intents.RequestCodeFileBrowseForKeyfile, false); + Intent intent = new Intent(this, typeof(SelectStorageLocationActivity)); + intent.PutExtra(FileStorageSelectionActivity.AllowThirdPartyAppGet, true); + intent.PutExtra(FileStorageSelectionActivity.AllowThirdPartyAppSend, false); + intent.PutExtra(FileStorageSetupDefs.ExtraIsForSave, false); + StartActivityForResult(intent, RequestCodeSelectKeyfile); }; } @@ -738,7 +758,7 @@ namespace keepass2android break; case 1: //don't set to "" to prevent losing the filename. (ItemSelected is also called during recreation!) - _keyFileOrProvider = FindViewById(Resource.Id.pass_keyfile).Text; + _keyFileOrProvider = (FindViewById(Resource.Id.label_keyfilename).Tag ?? "").ToString(); break; case 2: _keyFileOrProvider = KeyProviderIdOtp; @@ -779,7 +799,7 @@ namespace keepass2android _showPassword = savedInstanceState.GetBoolean(ShowpasswordKey, false); MakePasswordMaskedOrVisible(); - _keyFileOrProvider = FindViewById(Resource.Id.pass_keyfile).Text = savedInstanceState.GetString(KeyFileOrProviderKey); + _keyFileOrProvider = savedInstanceState.GetString(KeyFileOrProviderKey); _password = FindViewById(Resource.Id.password).Text = savedInstanceState.GetString(PasswordKey); _pendingOtps = new List(savedInstanceState.GetStringArrayList(PendingOtpsKey)); @@ -850,6 +870,11 @@ namespace keepass2android FindViewById(Resource.Id.keyfileLine).Visibility = KeyProviderType == KeyProviders.KeyFile ? ViewStates.Visible : ViewStates.Gone; + if (KeyProviderType == KeyProviders.KeyFile) + { + UpdateKeyfileIocView(); + } + FindViewById(Resource.Id.otpView).Visibility = KeyProviderType == KeyProviders.Otp ? ViewStates.Visible : ViewStates.Gone; @@ -880,12 +905,26 @@ namespace keepass2android { try { - compositeKey.AddUserKey(new KcpKeyFile(_keyFileOrProvider)); + if (_keyFileOrProvider == "") + throw new System.IO.FileNotFoundException(); + var ioc = IOConnectionInfo.UnserializeFromString(_keyFileOrProvider); + using (var stream = App.Kp2a.GetFileStorage(ioc).OpenFileForRead(ioc)) + { + byte[] keyfileData = StreamToMemoryStream(stream).ToArray(); + compositeKey.AddUserKey(new KcpKeyFile(keyfileData, ioc, true)); + } + + } + catch (System.IO.FileNotFoundException e) + { + Kp2aLog.Log(e.ToString()); + Toast.MakeText(this, App.Kp2a.GetResourceString(UiStringKey.keyfile_does_not_exist), ToastLength.Long).Show(); + return; } catch (Exception e) { Kp2aLog.Log(e.ToString()); - Toast.MakeText(this, App.Kp2a.GetResourceString(UiStringKey.keyfile_does_not_exist), ToastLength.Long).Show(); + Toast.MakeText(this, e.Message, ToastLength.Long).Show(); return; } } @@ -1032,23 +1071,29 @@ namespace keepass2android var fileStorage = App.Kp2a.GetFileStorage(_ioConnection); var stream = fileStorage.OpenFileForRead(_ioConnection); + var memoryStream = StreamToMemoryStream(stream); + + Kp2aLog.Log("Pre-loading database file completed"); + + return memoryStream; + } + + private static MemoryStream StreamToMemoryStream(Stream stream) + { var memoryStream = stream as MemoryStream; if (memoryStream == null) { - // Read the file into memory + // Read the stream into memory int capacity = 4096; // Default initial capacity, if stream can't report it. if (stream.CanSeek) { - capacity = (int)stream.Length; + capacity = (int) stream.Length; } memoryStream = new MemoryStream(capacity); stream.CopyTo(memoryStream); stream.Close(); - memoryStream.Seek(0, System.IO.SeekOrigin.Begin); + memoryStream.Seek(0, SeekOrigin.Begin); } - - Kp2aLog.Log("Pre-loading database file completed"); - return memoryStream; } diff --git a/src/keepass2android/Resources/Resource.designer.cs b/src/keepass2android/Resources/Resource.designer.cs index f6eff9f4..98fcc299 100644 --- a/src/keepass2android/Resources/Resource.designer.cs +++ b/src/keepass2android/Resources/Resource.designer.cs @@ -144,254 +144,212 @@ namespace keepass2android public partial class Attribute { - // aapt resource value: 0x7f010043 - public const int ActionBarButtonParentStyle = 2130772035; - - // aapt resource value: 0x7f010049 - public const int AddFieldDrawable = 2130772041; - - // aapt resource value: 0x7f010047 - public const int CancelDrawable = 2130772039; - - // aapt resource value: 0x7f01004d - public const int CreateDbDrawable = 2130772045; - - // aapt resource value: 0x7f010051 - public const int NavigationAcceptDrawable = 2130772049; - - // aapt resource value: 0x7f01004a - public const int NewEntryDrawable = 2130772042; - - // aapt resource value: 0x7f010048 - public const int NewGroupDrawable = 2130772040; - - // aapt resource value: 0x7f01004b - public const int OpenFileDrawable = 2130772043; - - // aapt resource value: 0x7f01004c - public const int OpenUrlDrawable = 2130772044; - - // aapt resource value: 0x7f010044 - public const int TextColorGroup = 2130772036; - - // aapt resource value: 0x7f010045 - public const int TextColorHeader = 2130772037; - - // aapt resource value: 0x7f010046 - public const int TextColorItem = 2130772038; - - // aapt resource value: 0x7f010042 - public const int TextViewParentStyle = 2130772034; - - // aapt resource value: 0x7f010036 - public const int afc_badge_file_provider_localfile = 2130772022; - - // aapt resource value: 0x7f01003f - public const int afc_button_bar_button_style = 2130772031; - - // aapt resource value: 0x7f01003e - public const int afc_button_bar_style = 2130772030; - - // aapt resource value: 0x7f010024 - public const int afc_button_home = 2130772004; - - // aapt resource value: 0x7f010041 - public const int afc_color_list_group_view_background = 2130772033; - - // aapt resource value: 0x7f010040 - public const int afc_color_listview_cache_hint = 2130772032; - - // aapt resource value: 0x7f01002e - public const int afc_ic_button_sort_by_date_asc = 2130772014; - - // aapt resource value: 0x7f01002f - public const int afc_ic_button_sort_by_date_desc = 2130772015; - - // aapt resource value: 0x7f010030 - public const int afc_ic_button_sort_by_name_asc = 2130772016; - - // aapt resource value: 0x7f010031 - public const int afc_ic_button_sort_by_name_desc = 2130772017; - - // aapt resource value: 0x7f010032 - public const int afc_ic_button_sort_by_size_asc = 2130772018; - - // aapt resource value: 0x7f010033 - public const int afc_ic_button_sort_by_size_desc = 2130772019; - - // aapt resource value: 0x7f010026 - public const int afc_ic_menu_gridview = 2130772006; - - // aapt resource value: 0x7f010025 - public const int afc_ic_menu_home = 2130772005; - - // aapt resource value: 0x7f010027 - public const int afc_ic_menu_listview = 2130772007; - - // aapt resource value: 0x7f010028 - public const int afc_ic_menu_sort_by_date_asc = 2130772008; - - // aapt resource value: 0x7f010029 - public const int afc_ic_menu_sort_by_date_desc = 2130772009; - - // aapt resource value: 0x7f01002a - public const int afc_ic_menu_sort_by_name_asc = 2130772010; - - // aapt resource value: 0x7f01002b - public const int afc_ic_menu_sort_by_name_desc = 2130772011; - - // aapt resource value: 0x7f01002c - public const int afc_ic_menu_sort_by_size_asc = 2130772012; - - // aapt resource value: 0x7f01002d - public const int afc_ic_menu_sort_by_size_desc = 2130772013; - // aapt resource value: 0x7f010035 - public const int afc_ic_widget_search_view_action_clear = 2130772021; - - // aapt resource value: 0x7f010034 - public const int afc_ic_widget_search_view_action_search = 2130772020; - - // aapt resource value: 0x7f01003c - public const int afc_selector_action_navi_left_foreground = 2130772028; - - // aapt resource value: 0x7f01003d - public const int afc_selector_action_navi_right_foreground = 2130772029; - - // aapt resource value: 0x7f010038 - public const int afc_selector_button_location = 2130772024; + public const int ActionBarButtonParentStyle = 2130772021; // aapt resource value: 0x7f01003b - public const int afc_selector_button_ok_saveas = 2130772027; - - // aapt resource value: 0x7f010037 - public const int afc_selector_image_button = 2130772023; + public const int AddFieldDrawable = 2130772027; // aapt resource value: 0x7f010039 - public const int afc_selector_main_button_navi_left = 2130772025; + public const int CancelDrawable = 2130772025; + + // aapt resource value: 0x7f01003f + public const int CreateDbDrawable = 2130772031; + + // aapt resource value: 0x7f010043 + public const int NavigationAcceptDrawable = 2130772035; + + // aapt resource value: 0x7f01003c + public const int NewEntryDrawable = 2130772028; // aapt resource value: 0x7f01003a - public const int afc_selector_main_button_navi_right = 2130772026; + public const int NewGroupDrawable = 2130772026; - // aapt resource value: 0x7f010023 - public const int afc_theme_dialog = 2130772003; + // aapt resource value: 0x7f01003d + public const int OpenFileDrawable = 2130772029; - // aapt resource value: 0x7f01001b - public const int backgroundDimAmount = 2130771995; + // aapt resource value: 0x7f01003e + public const int OpenUrlDrawable = 2130772030; - // aapt resource value: 0x7f010001 - public const int cameraBearing = 2130771969; + // aapt resource value: 0x7f010036 + public const int TextColorGroup = 2130772022; - // aapt resource value: 0x7f010002 - public const int cameraTargetLat = 2130771970; + // aapt resource value: 0x7f010037 + public const int TextColorHeader = 2130772023; - // aapt resource value: 0x7f010003 - public const int cameraTargetLng = 2130771971; + // aapt resource value: 0x7f010038 + public const int TextColorItem = 2130772024; - // aapt resource value: 0x7f010004 - public const int cameraTilt = 2130771972; + // aapt resource value: 0x7f010034 + public const int TextViewParentStyle = 2130772020; - // aapt resource value: 0x7f010005 - public const int cameraZoom = 2130771973; + // aapt resource value: 0x7f010028 + public const int afc_badge_file_provider_localfile = 2130772008; - // aapt resource value: 0x7f010020 - public const int closable = 2130772000; + // aapt resource value: 0x7f010031 + public const int afc_button_bar_button_style = 2130772017; - // aapt resource value: 0x7f01001e - public const int delayTimeSubmission = 2130771998; - - // aapt resource value: 0x7f010021 - public const int enabled = 2130772001; - - // aapt resource value: 0x7f010052 - public const int help_text = 2130772050; - - // aapt resource value: 0x7f010022 - public const int hint = 2130772002; - - // aapt resource value: 0x7f010050 - public const int ic_action_search_drawable = 2130772048; - - // aapt resource value: 0x7f01004f - public const int ic_launcher_folder_small = 2130772047; - - // aapt resource value: 0x7f01004e - public const int ic_menu_add_field = 2130772046; - - // aapt resource value: 0x7f01001f - public const int iconified = 2130771999; - - // aapt resource value: 0x7f01000f - public const int keyBackground = 2130771983; + // aapt resource value: 0x7f010030 + public const int afc_button_bar_style = 2130772016; // aapt resource value: 0x7f010016 - public const int keyHysteresisDistance = 2130771990; + public const int afc_button_home = 2130771990; - // aapt resource value: 0x7f010015 - public const int keyPreviewHeight = 2130771989; + // aapt resource value: 0x7f010033 + public const int afc_color_list_group_view_background = 2130772019; - // aapt resource value: 0x7f010013 - public const int keyPreviewLayout = 2130771987; + // aapt resource value: 0x7f010032 + public const int afc_color_listview_cache_hint = 2130772018; - // aapt resource value: 0x7f010014 - public const int keyPreviewOffset = 2130771988; + // aapt resource value: 0x7f010020 + public const int afc_ic_button_sort_by_date_asc = 2130772000; - // aapt resource value: 0x7f010012 - public const int keyTextColor = 2130771986; + // aapt resource value: 0x7f010021 + public const int afc_ic_button_sort_by_date_desc = 2130772001; - // aapt resource value: 0x7f010010 - public const int keyTextSize = 2130771984; + // aapt resource value: 0x7f010022 + public const int afc_ic_button_sort_by_name_asc = 2130772002; - // aapt resource value: 0x7f01001c - public const int keyTextStyle = 2130771996; + // aapt resource value: 0x7f010023 + public const int afc_ic_button_sort_by_name_desc = 2130772003; - // aapt resource value: 0x7f01000e - public const int keyboardViewStyle = 2130771982; + // aapt resource value: 0x7f010024 + public const int afc_ic_button_sort_by_size_asc = 2130772004; - // aapt resource value: 0x7f010011 - public const int labelTextSize = 2130771985; - - // aapt resource value: 0x7f010000 - public const int mapType = 2130771968; + // aapt resource value: 0x7f010025 + public const int afc_ic_button_sort_by_size_desc = 2130772005; // aapt resource value: 0x7f010018 - public const int popupLayout = 2130771992; - - // aapt resource value: 0x7f010019 - public const int shadowColor = 2130771993; - - // aapt resource value: 0x7f01001a - public const int shadowRadius = 2130771994; - - // aapt resource value: 0x7f01001d - public const int symbolColorScheme = 2130771997; - - // aapt resource value: 0x7f010006 - public const int uiCompass = 2130771974; - - // aapt resource value: 0x7f010007 - public const int uiRotateGestures = 2130771975; - - // aapt resource value: 0x7f010008 - public const int uiScrollGestures = 2130771976; - - // aapt resource value: 0x7f010009 - public const int uiTiltGestures = 2130771977; - - // aapt resource value: 0x7f01000a - public const int uiZoomControls = 2130771978; - - // aapt resource value: 0x7f01000b - public const int uiZoomGestures = 2130771979; - - // aapt resource value: 0x7f01000c - public const int useViewLifecycle = 2130771980; + public const int afc_ic_menu_gridview = 2130771992; // aapt resource value: 0x7f010017 - public const int verticalCorrection = 2130771991; + public const int afc_ic_menu_home = 2130771991; + + // aapt resource value: 0x7f010019 + public const int afc_ic_menu_listview = 2130771993; + + // aapt resource value: 0x7f01001a + public const int afc_ic_menu_sort_by_date_asc = 2130771994; + + // aapt resource value: 0x7f01001b + public const int afc_ic_menu_sort_by_date_desc = 2130771995; + + // aapt resource value: 0x7f01001c + public const int afc_ic_menu_sort_by_name_asc = 2130771996; + + // aapt resource value: 0x7f01001d + public const int afc_ic_menu_sort_by_name_desc = 2130771997; + + // aapt resource value: 0x7f01001e + public const int afc_ic_menu_sort_by_size_asc = 2130771998; + + // aapt resource value: 0x7f01001f + public const int afc_ic_menu_sort_by_size_desc = 2130771999; + + // aapt resource value: 0x7f010027 + public const int afc_ic_widget_search_view_action_clear = 2130772007; + + // aapt resource value: 0x7f010026 + public const int afc_ic_widget_search_view_action_search = 2130772006; + + // aapt resource value: 0x7f01002e + public const int afc_selector_action_navi_left_foreground = 2130772014; + + // aapt resource value: 0x7f01002f + public const int afc_selector_action_navi_right_foreground = 2130772015; + + // aapt resource value: 0x7f01002a + public const int afc_selector_button_location = 2130772010; + + // aapt resource value: 0x7f01002d + public const int afc_selector_button_ok_saveas = 2130772013; + + // aapt resource value: 0x7f010029 + public const int afc_selector_image_button = 2130772009; + + // aapt resource value: 0x7f01002b + public const int afc_selector_main_button_navi_left = 2130772011; + + // aapt resource value: 0x7f01002c + public const int afc_selector_main_button_navi_right = 2130772012; + + // aapt resource value: 0x7f010015 + public const int afc_theme_dialog = 2130771989; // aapt resource value: 0x7f01000d - public const int zOrderOnTop = 2130771981; + public const int backgroundDimAmount = 2130771981; + + // aapt resource value: 0x7f010012 + public const int closable = 2130771986; + + // aapt resource value: 0x7f010010 + public const int delayTimeSubmission = 2130771984; + + // aapt resource value: 0x7f010013 + public const int enabled = 2130771987; + + // aapt resource value: 0x7f010044 + public const int help_text = 2130772036; + + // aapt resource value: 0x7f010014 + public const int hint = 2130771988; + + // aapt resource value: 0x7f010042 + public const int ic_action_search_drawable = 2130772034; + + // aapt resource value: 0x7f010041 + public const int ic_launcher_folder_small = 2130772033; + + // aapt resource value: 0x7f010040 + public const int ic_menu_add_field = 2130772032; + + // aapt resource value: 0x7f010011 + public const int iconified = 2130771985; + + // aapt resource value: 0x7f010001 + public const int keyBackground = 2130771969; + + // aapt resource value: 0x7f010008 + public const int keyHysteresisDistance = 2130771976; + + // aapt resource value: 0x7f010007 + public const int keyPreviewHeight = 2130771975; + + // aapt resource value: 0x7f010005 + public const int keyPreviewLayout = 2130771973; + + // aapt resource value: 0x7f010006 + public const int keyPreviewOffset = 2130771974; + + // aapt resource value: 0x7f010004 + public const int keyTextColor = 2130771972; + + // aapt resource value: 0x7f010002 + public const int keyTextSize = 2130771970; + + // aapt resource value: 0x7f01000e + public const int keyTextStyle = 2130771982; + + // aapt resource value: 0x7f010000 + public const int keyboardViewStyle = 2130771968; + + // aapt resource value: 0x7f010003 + public const int labelTextSize = 2130771971; + + // aapt resource value: 0x7f01000a + public const int popupLayout = 2130771978; + + // aapt resource value: 0x7f01000b + public const int shadowColor = 2130771979; + + // aapt resource value: 0x7f01000c + public const int shadowRadius = 2130771980; + + // aapt resource value: 0x7f01000f + public const int symbolColorScheme = 2130771983; + + // aapt resource value: 0x7f010009 + public const int verticalCorrection = 2130771977; static Attribute() { @@ -406,80 +364,80 @@ namespace keepass2android public partial class Boolean { - // aapt resource value: 0x7f0a0014 - public const int CopyToClipboardNotification_default = 2131361812; + // aapt resource value: 0x7f090014 + public const int CopyToClipboardNotification_default = 2131296276; - // aapt resource value: 0x7f0a0016 - public const int OpenKp2aKeyboardAutomatically_default = 2131361814; + // aapt resource value: 0x7f090016 + public const int OpenKp2aKeyboardAutomatically_default = 2131296278; - // aapt resource value: 0x7f0a0018 - public const int PreloadDatabaseEnabled_default = 2131361816; + // aapt resource value: 0x7f090018 + public const int PreloadDatabaseEnabled_default = 2131296280; - // aapt resource value: 0x7f0a0013 - public const int RememberRecentFiles_default = 2131361811; + // aapt resource value: 0x7f090013 + public const int RememberRecentFiles_default = 2131296275; - // aapt resource value: 0x7f0a0012 - public const int ShowGroupnameInSearchResult_default = 2131361810; + // aapt resource value: 0x7f090012 + public const int ShowGroupnameInSearchResult_default = 2131296274; - // aapt resource value: 0x7f0a0017 - public const int ShowUnlockedNotification_default = 2131361815; + // aapt resource value: 0x7f090017 + public const int ShowUnlockedNotification_default = 2131296279; - // aapt resource value: 0x7f0a0011 - public const int ShowUsernameInList_default = 2131361809; + // aapt resource value: 0x7f090011 + public const int ShowUsernameInList_default = 2131296273; - // aapt resource value: 0x7f0a0010 - public const int TanExpiresOnUse_default = 2131361808; + // aapt resource value: 0x7f090010 + public const int TanExpiresOnUse_default = 2131296272; - // aapt resource value: 0x7f0a0015 - public const int UseKp2aKeyboard_default = 2131361813; + // aapt resource value: 0x7f090015 + public const int UseKp2aKeyboard_default = 2131296277; - // aapt resource value: 0x7f0a0007 - public const int afc_is_large_screen = 2131361799; + // aapt resource value: 0x7f090007 + public const int afc_is_large_screen = 2131296263; - // aapt resource value: 0x7f0a000b - public const int afc_pkey_display_remember_last_location_def = 2131361803; + // aapt resource value: 0x7f09000b + public const int afc_pkey_display_remember_last_location_def = 2131296267; - // aapt resource value: 0x7f0a000a - public const int afc_pkey_display_show_time_for_old_days_def = 2131361802; + // aapt resource value: 0x7f09000a + public const int afc_pkey_display_show_time_for_old_days_def = 2131296266; - // aapt resource value: 0x7f0a0009 - public const int afc_pkey_display_show_time_for_old_days_this_year_def = 2131361801; + // aapt resource value: 0x7f090009 + public const int afc_pkey_display_show_time_for_old_days_this_year_def = 2131296265; - // aapt resource value: 0x7f0a0008 - public const int afc_pkey_display_sort_ascending_def = 2131361800; + // aapt resource value: 0x7f090008 + public const int afc_pkey_display_sort_ascending_def = 2131296264; - // aapt resource value: 0x7f0a0006 - public const int config_long_press_comma_for_settings_enabled = 2131361798; + // aapt resource value: 0x7f090006 + public const int config_long_press_comma_for_settings_enabled = 2131296262; - // aapt resource value: 0x7f0a0003 - public const int config_swipeDisambiguation = 2131361795; + // aapt resource value: 0x7f090003 + public const int config_swipeDisambiguation = 2131296259; - // aapt resource value: 0x7f0a0004 - public const int default_popup_preview = 2131361796; + // aapt resource value: 0x7f090004 + public const int default_popup_preview = 2131296260; - // aapt resource value: 0x7f0a0005 - public const int default_recorrection_enabled = 2131361797; + // aapt resource value: 0x7f090005 + public const int default_recorrection_enabled = 2131296261; - // aapt resource value: 0x7f0a0000 - public const int enable_autocorrect = 2131361792; + // aapt resource value: 0x7f090000 + public const int enable_autocorrect = 2131296256; - // aapt resource value: 0x7f0a0001 - public const int im_is_default = 2131361793; + // aapt resource value: 0x7f090001 + public const int im_is_default = 2131296257; - // aapt resource value: 0x7f0a000d - public const int keyfile_default = 2131361805; + // aapt resource value: 0x7f09000d + public const int keyfile_default = 2131296269; - // aapt resource value: 0x7f0a000c - public const int maskpass_default = 2131361804; + // aapt resource value: 0x7f09000c + public const int maskpass_default = 2131296268; - // aapt resource value: 0x7f0a000f - public const int omitbackup_default = 2131361807; + // aapt resource value: 0x7f09000f + public const int omitbackup_default = 2131296271; - // aapt resource value: 0x7f0a000e - public const int sort_default = 2131361806; + // aapt resource value: 0x7f09000e + public const int sort_default = 2131296270; - // aapt resource value: 0x7f0a0002 - public const int voice_input_default = 2131361794; + // aapt resource value: 0x7f090002 + public const int voice_input_default = 2131296258; static Boolean() { @@ -494,116 +452,80 @@ namespace keepass2android public partial class Color { - // aapt resource value: 0x7f070015 - public const int afc_border_line_dark = 2131165205; + // aapt resource value: 0x7f0a000b + public const int afc_border_line_dark = 2131361803; - // aapt resource value: 0x7f070018 - public const int afc_list_group_view_background_dark = 2131165208; + // aapt resource value: 0x7f0a000e + public const int afc_list_group_view_background_dark = 2131361806; - // aapt resource value: 0x7f070019 - public const int afc_list_group_view_background_light = 2131165209; + // aapt resource value: 0x7f0a000f + public const int afc_list_group_view_background_light = 2131361807; - // aapt resource value: 0x7f070016 - public const int afc_listview_cache_hint_dark = 2131165206; + // aapt resource value: 0x7f0a000c + public const int afc_listview_cache_hint_dark = 2131361804; - // aapt resource value: 0x7f070017 - public const int afc_listview_cache_hint_light = 2131165207; + // aapt resource value: 0x7f0a000d + public const int afc_listview_cache_hint_light = 2131361805; - // aapt resource value: 0x7f07001a - public const int blue_highlight = 2131165210; + // aapt resource value: 0x7f0a0010 + public const int blue_highlight = 2131361808; - // aapt resource value: 0x7f07000a - public const int candidate_normal = 2131165194; + // aapt resource value: 0x7f0a0000 + public const int candidate_normal = 2131361792; - // aapt resource value: 0x7f07000c - public const int candidate_other = 2131165196; + // aapt resource value: 0x7f0a0002 + public const int candidate_other = 2131361794; - // aapt resource value: 0x7f07000b - public const int candidate_recommended = 2131165195; + // aapt resource value: 0x7f0a0001 + public const int candidate_recommended = 2131361793; - // aapt resource value: 0x7f070009 - public const int common_action_bar_splitter = 2131165193; + // aapt resource value: 0x7f0a0015 + public const int dark_gray = 2131361813; - // aapt resource value: 0x7f070000 - public const int common_signin_btn_dark_text_default = 2131165184; + // aapt resource value: 0x7f0a0016 + public const int element_being_moved = 2131361814; - // aapt resource value: 0x7f070002 - public const int common_signin_btn_dark_text_disabled = 2131165186; + // aapt resource value: 0x7f0a0017 + public const int emphasis = 2131361815; - // aapt resource value: 0x7f070003 - public const int common_signin_btn_dark_text_focused = 2131165187; + // aapt resource value: 0x7f0a0018 + public const int emphasis2 = 2131361816; - // aapt resource value: 0x7f070001 - public const int common_signin_btn_dark_text_pressed = 2131165185; + // aapt resource value: 0x7f0a0011 + public const int group = 2131361809; - // aapt resource value: 0x7f070008 - public const int common_signin_btn_default_background = 2131165192; + // aapt resource value: 0x7f0a0012 + public const int icon_background = 2131361810; - // aapt resource value: 0x7f070004 - public const int common_signin_btn_light_text_default = 2131165188; + // aapt resource value: 0x7f0a0013 + public const int icon_text = 2131361811; - // aapt resource value: 0x7f070006 - public const int common_signin_btn_light_text_disabled = 2131165190; + // aapt resource value: 0x7f0a0005 + public const int latinkeyboard_bar_language_shadow_black = 2131361797; - // aapt resource value: 0x7f070007 - public const int common_signin_btn_light_text_focused = 2131165191; + // aapt resource value: 0x7f0a0004 + public const int latinkeyboard_bar_language_shadow_white = 2131361796; - // aapt resource value: 0x7f070005 - public const int common_signin_btn_light_text_pressed = 2131165189; + // aapt resource value: 0x7f0a0006 + public const int latinkeyboard_bar_language_text = 2131361798; - // aapt resource value: 0x7f070023 - public const int common_signin_btn_text_dark = 2131165219; + // aapt resource value: 0x7f0a0007 + public const int latinkeyboard_extension_background = 2131361799; - // aapt resource value: 0x7f070024 - public const int common_signin_btn_text_light = 2131165220; + // aapt resource value: 0x7f0a0008 + public const int latinkeyboard_feedback_language_text = 2131361800; - // aapt resource value: 0x7f07001f - public const int dark_gray = 2131165215; + // aapt resource value: 0x7f0a000a + public const int latinkeyboard_key_color_black = 2131361802; - // aapt resource value: 0x7f070020 - public const int element_being_moved = 2131165216; + // aapt resource value: 0x7f0a0009 + public const int latinkeyboard_key_color_white = 2131361801; - // aapt resource value: 0x7f070021 - public const int emphasis = 2131165217; + // aapt resource value: 0x7f0a0003 + public const int latinkeyboard_transparent = 2131361795; - // aapt resource value: 0x7f070022 - public const int emphasis2 = 2131165218; - - // aapt resource value: 0x7f07001b - public const int group = 2131165211; - - // aapt resource value: 0x7f07001c - public const int icon_background = 2131165212; - - // aapt resource value: 0x7f07001d - public const int icon_text = 2131165213; - - // aapt resource value: 0x7f07000f - public const int latinkeyboard_bar_language_shadow_black = 2131165199; - - // aapt resource value: 0x7f07000e - public const int latinkeyboard_bar_language_shadow_white = 2131165198; - - // aapt resource value: 0x7f070010 - public const int latinkeyboard_bar_language_text = 2131165200; - - // aapt resource value: 0x7f070011 - public const int latinkeyboard_extension_background = 2131165201; - - // aapt resource value: 0x7f070012 - public const int latinkeyboard_feedback_language_text = 2131165202; - - // aapt resource value: 0x7f070014 - public const int latinkeyboard_key_color_black = 2131165204; - - // aapt resource value: 0x7f070013 - public const int latinkeyboard_key_color_white = 2131165203; - - // aapt resource value: 0x7f07000d - public const int latinkeyboard_transparent = 2131165197; - - // aapt resource value: 0x7f07001e - public const int light_gray = 2131165214; + // aapt resource value: 0x7f0a0014 + public const int light_gray = 2131361812; static Color() { @@ -1181,784 +1103,712 @@ namespace keepass2android public const int collections_new_label_holodark = 2130837641; // aapt resource value: 0x7f02008a - public const int common_signin_btn_icon_dark = 2130837642; + public const int device_access_new_account = 2130837642; // aapt resource value: 0x7f02008b - public const int common_signin_btn_icon_disabled_dark = 2130837643; + public const int device_access_new_account_holodark = 2130837643; // aapt resource value: 0x7f02008c - public const int common_signin_btn_icon_disabled_focus_dark = 2130837644; + public const int device_access_not_secure = 2130837644; // aapt resource value: 0x7f02008d - public const int common_signin_btn_icon_disabled_focus_light = 2130837645; + public const int dialog_bubble_step02 = 2130837645; // aapt resource value: 0x7f02008e - public const int common_signin_btn_icon_disabled_light = 2130837646; + public const int dialog_bubble_step07 = 2130837646; // aapt resource value: 0x7f02008f - public const int common_signin_btn_icon_focus_dark = 2130837647; + public const int donate_cake = 2130837647; // aapt resource value: 0x7f020090 - public const int common_signin_btn_icon_focus_light = 2130837648; + public const int EntryFieldHeaderBackground = 2130837648; // aapt resource value: 0x7f020091 - public const int common_signin_btn_icon_light = 2130837649; + public const int extra_string_header = 2130837649; // aapt resource value: 0x7f020092 - public const int common_signin_btn_icon_normal_dark = 2130837650; + public const int GreenButton = 2130837650; // aapt resource value: 0x7f020093 - public const int common_signin_btn_icon_normal_light = 2130837651; + public const int highlight_pressed = 2130837651; // aapt resource value: 0x7f020094 - public const int common_signin_btn_icon_pressed_dark = 2130837652; + public const int hint_popup = 2130837652; // aapt resource value: 0x7f020095 - public const int common_signin_btn_icon_pressed_light = 2130837653; + public const int ic00 = 2130837653; // aapt resource value: 0x7f020096 - public const int common_signin_btn_text_dark = 2130837654; + public const int ic01 = 2130837654; // aapt resource value: 0x7f020097 - public const int common_signin_btn_text_disabled_dark = 2130837655; + public const int ic02 = 2130837655; // aapt resource value: 0x7f020098 - public const int common_signin_btn_text_disabled_focus_dark = 2130837656; + public const int ic03 = 2130837656; // aapt resource value: 0x7f020099 - public const int common_signin_btn_text_disabled_focus_light = 2130837657; + public const int ic04 = 2130837657; // aapt resource value: 0x7f02009a - public const int common_signin_btn_text_disabled_light = 2130837658; + public const int ic05 = 2130837658; // aapt resource value: 0x7f02009b - public const int common_signin_btn_text_focus_dark = 2130837659; + public const int ic06 = 2130837659; // aapt resource value: 0x7f02009c - public const int common_signin_btn_text_focus_light = 2130837660; + public const int ic07 = 2130837660; // aapt resource value: 0x7f02009d - public const int common_signin_btn_text_light = 2130837661; + public const int ic08 = 2130837661; // aapt resource value: 0x7f02009e - public const int common_signin_btn_text_normal_dark = 2130837662; + public const int ic09 = 2130837662; // aapt resource value: 0x7f02009f - public const int common_signin_btn_text_normal_light = 2130837663; + public const int ic10 = 2130837663; // aapt resource value: 0x7f0200a0 - public const int common_signin_btn_text_pressed_dark = 2130837664; + public const int ic11 = 2130837664; // aapt resource value: 0x7f0200a1 - public const int common_signin_btn_text_pressed_light = 2130837665; + public const int ic12 = 2130837665; // aapt resource value: 0x7f0200a2 - public const int device_access_new_account = 2130837666; + public const int ic13 = 2130837666; // aapt resource value: 0x7f0200a3 - public const int device_access_new_account_holodark = 2130837667; + public const int ic14 = 2130837667; // aapt resource value: 0x7f0200a4 - public const int device_access_not_secure = 2130837668; + public const int ic15 = 2130837668; // aapt resource value: 0x7f0200a5 - public const int dialog_bubble_step02 = 2130837669; + public const int ic16 = 2130837669; // aapt resource value: 0x7f0200a6 - public const int dialog_bubble_step07 = 2130837670; + public const int ic17 = 2130837670; // aapt resource value: 0x7f0200a7 - public const int donate_cake = 2130837671; + public const int ic18 = 2130837671; // aapt resource value: 0x7f0200a8 - public const int EntryFieldHeaderBackground = 2130837672; + public const int ic19 = 2130837672; // aapt resource value: 0x7f0200a9 - public const int extra_string_header = 2130837673; + public const int ic20 = 2130837673; // aapt resource value: 0x7f0200aa - public const int GreenButton = 2130837674; + public const int ic21 = 2130837674; // aapt resource value: 0x7f0200ab - public const int highlight_pressed = 2130837675; + public const int ic22 = 2130837675; // aapt resource value: 0x7f0200ac - public const int hint_popup = 2130837676; + public const int ic23 = 2130837676; // aapt resource value: 0x7f0200ad - public const int ic00 = 2130837677; + public const int ic24 = 2130837677; // aapt resource value: 0x7f0200ae - public const int ic01 = 2130837678; + public const int ic25 = 2130837678; // aapt resource value: 0x7f0200af - public const int ic02 = 2130837679; + public const int ic26 = 2130837679; // aapt resource value: 0x7f0200b0 - public const int ic03 = 2130837680; + public const int ic27 = 2130837680; // aapt resource value: 0x7f0200b1 - public const int ic04 = 2130837681; + public const int ic28 = 2130837681; // aapt resource value: 0x7f0200b2 - public const int ic05 = 2130837682; + public const int ic29 = 2130837682; // aapt resource value: 0x7f0200b3 - public const int ic06 = 2130837683; + public const int ic30 = 2130837683; // aapt resource value: 0x7f0200b4 - public const int ic07 = 2130837684; + public const int ic31 = 2130837684; // aapt resource value: 0x7f0200b5 - public const int ic08 = 2130837685; + public const int ic32 = 2130837685; // aapt resource value: 0x7f0200b6 - public const int ic09 = 2130837686; + public const int ic33 = 2130837686; // aapt resource value: 0x7f0200b7 - public const int ic10 = 2130837687; + public const int ic34 = 2130837687; // aapt resource value: 0x7f0200b8 - public const int ic11 = 2130837688; + public const int ic35 = 2130837688; // aapt resource value: 0x7f0200b9 - public const int ic12 = 2130837689; + public const int ic36 = 2130837689; // aapt resource value: 0x7f0200ba - public const int ic13 = 2130837690; + public const int ic37 = 2130837690; // aapt resource value: 0x7f0200bb - public const int ic14 = 2130837691; + public const int ic38 = 2130837691; // aapt resource value: 0x7f0200bc - public const int ic15 = 2130837692; + public const int ic39 = 2130837692; // aapt resource value: 0x7f0200bd - public const int ic16 = 2130837693; + public const int ic40 = 2130837693; // aapt resource value: 0x7f0200be - public const int ic17 = 2130837694; + public const int ic41 = 2130837694; // aapt resource value: 0x7f0200bf - public const int ic18 = 2130837695; + public const int ic42 = 2130837695; // aapt resource value: 0x7f0200c0 - public const int ic19 = 2130837696; + public const int ic43 = 2130837696; // aapt resource value: 0x7f0200c1 - public const int ic20 = 2130837697; + public const int ic44 = 2130837697; // aapt resource value: 0x7f0200c2 - public const int ic21 = 2130837698; + public const int ic45 = 2130837698; // aapt resource value: 0x7f0200c3 - public const int ic22 = 2130837699; + public const int ic46 = 2130837699; // aapt resource value: 0x7f0200c4 - public const int ic23 = 2130837700; + public const int ic47 = 2130837700; // aapt resource value: 0x7f0200c5 - public const int ic24 = 2130837701; + public const int ic48 = 2130837701; // aapt resource value: 0x7f0200c6 - public const int ic25 = 2130837702; + public const int ic49 = 2130837702; // aapt resource value: 0x7f0200c7 - public const int ic26 = 2130837703; + public const int ic50 = 2130837703; // aapt resource value: 0x7f0200c8 - public const int ic27 = 2130837704; + public const int ic51 = 2130837704; // aapt resource value: 0x7f0200c9 - public const int ic28 = 2130837705; + public const int ic52 = 2130837705; // aapt resource value: 0x7f0200ca - public const int ic29 = 2130837706; + public const int ic53 = 2130837706; // aapt resource value: 0x7f0200cb - public const int ic30 = 2130837707; + public const int ic54 = 2130837707; // aapt resource value: 0x7f0200cc - public const int ic31 = 2130837708; + public const int ic55 = 2130837708; // aapt resource value: 0x7f0200cd - public const int ic32 = 2130837709; + public const int ic56 = 2130837709; // aapt resource value: 0x7f0200ce - public const int ic33 = 2130837710; + public const int ic57 = 2130837710; // aapt resource value: 0x7f0200cf - public const int ic34 = 2130837711; + public const int ic58 = 2130837711; // aapt resource value: 0x7f0200d0 - public const int ic35 = 2130837712; + public const int ic59 = 2130837712; // aapt resource value: 0x7f0200d1 - public const int ic36 = 2130837713; + public const int ic60 = 2130837713; // aapt resource value: 0x7f0200d2 - public const int ic37 = 2130837714; + public const int ic61 = 2130837714; // aapt resource value: 0x7f0200d3 - public const int ic38 = 2130837715; + public const int ic62 = 2130837715; // aapt resource value: 0x7f0200d4 - public const int ic39 = 2130837716; + public const int ic63 = 2130837716; // aapt resource value: 0x7f0200d5 - public const int ic40 = 2130837717; + public const int ic64 = 2130837717; // aapt resource value: 0x7f0200d6 - public const int ic41 = 2130837718; + public const int ic65 = 2130837718; // aapt resource value: 0x7f0200d7 - public const int ic42 = 2130837719; + public const int ic66 = 2130837719; // aapt resource value: 0x7f0200d8 - public const int ic43 = 2130837720; + public const int ic67 = 2130837720; // aapt resource value: 0x7f0200d9 - public const int ic44 = 2130837721; + public const int ic68 = 2130837721; // aapt resource value: 0x7f0200da - public const int ic45 = 2130837722; + public const int ic99_blank = 2130837722; // aapt resource value: 0x7f0200db - public const int ic46 = 2130837723; + public const int ic_action_eye_open = 2130837723; // aapt resource value: 0x7f0200dc - public const int ic47 = 2130837724; + public const int ic_action_search = 2130837724; // aapt resource value: 0x7f0200dd - public const int ic48 = 2130837725; + public const int ic_action_search_holodark = 2130837725; // aapt resource value: 0x7f0200de - public const int ic49 = 2130837726; + public const int ic_dialog_keyboard = 2130837726; // aapt resource value: 0x7f0200df - public const int ic50 = 2130837727; + public const int ic_keepass2android = 2130837727; // aapt resource value: 0x7f0200e0 - public const int ic51 = 2130837728; + public const int ic_keepass2android_nonet = 2130837728; // aapt resource value: 0x7f0200e1 - public const int ic52 = 2130837729; + public const int ic_launcher = 2130837729; // aapt resource value: 0x7f0200e2 - public const int ic53 = 2130837730; + public const int ic_launcher_folder_small = 2130837730; // aapt resource value: 0x7f0200e3 - public const int ic54 = 2130837731; + public const int ic_launcher_gray = 2130837731; // aapt resource value: 0x7f0200e4 - public const int ic55 = 2130837732; + public const int ic_launcher_gray_bday = 2130837732; // aapt resource value: 0x7f0200e5 - public const int ic56 = 2130837733; + public const int ic_launcher_offline = 2130837733; // aapt resource value: 0x7f0200e6 - public const int ic57 = 2130837734; + public const int ic_launcher_red = 2130837734; // aapt resource value: 0x7f0200e7 - public const int ic58 = 2130837735; + public const int ic_menu_add_field_holo_light = 2130837735; // aapt resource value: 0x7f0200e8 - public const int ic59 = 2130837736; + public const int ic_menu_add_field_holodark = 2130837736; // aapt resource value: 0x7f0200e9 - public const int ic60 = 2130837737; + public const int ic_menu_copy_holo_light = 2130837737; // aapt resource value: 0x7f0200ea - public const int ic61 = 2130837738; + public const int ic_menu_remove_field_holo_light = 2130837738; // aapt resource value: 0x7f0200eb - public const int ic62 = 2130837739; + public const int ic_menu_remove_field_holodark = 2130837739; // aapt resource value: 0x7f0200ec - public const int ic63 = 2130837740; + public const int ic_menu_view = 2130837740; // aapt resource value: 0x7f0200ed - public const int ic64 = 2130837741; + public const int ic_mic_dialog = 2130837741; // aapt resource value: 0x7f0200ee - public const int ic65 = 2130837742; + public const int ic_storage_androidget = 2130837742; // aapt resource value: 0x7f0200ef - public const int ic66 = 2130837743; + public const int ic_storage_androidsend = 2130837743; // aapt resource value: 0x7f0200f0 - public const int ic67 = 2130837744; + public const int ic_storage_dropbox = 2130837744; // aapt resource value: 0x7f0200f1 - public const int ic68 = 2130837745; + public const int ic_storage_dropboxKP2A = 2130837745; // aapt resource value: 0x7f0200f2 - public const int ic99_blank = 2130837746; + public const int ic_storage_file = 2130837746; // aapt resource value: 0x7f0200f3 - public const int ic_action_eye_open = 2130837747; + public const int ic_storage_ftp = 2130837747; // aapt resource value: 0x7f0200f4 - public const int ic_action_search = 2130837748; + public const int ic_storage_gdrive = 2130837748; // aapt resource value: 0x7f0200f5 - public const int ic_action_search_holodark = 2130837749; + public const int ic_storage_http = 2130837749; // aapt resource value: 0x7f0200f6 - public const int ic_dialog_keyboard = 2130837750; + public const int ic_storage_https = 2130837750; // aapt resource value: 0x7f0200f7 - public const int ic_keepass2android = 2130837751; + public const int ic_storage_sftp = 2130837751; // aapt resource value: 0x7f0200f8 - public const int ic_keepass2android_nonet = 2130837752; + public const int ic_storage_skydrive = 2130837752; // aapt resource value: 0x7f0200f9 - public const int ic_launcher = 2130837753; + public const int ic_subtype_keyboard = 2130837753; // aapt resource value: 0x7f0200fa - public const int ic_launcher_folder_small = 2130837754; + public const int ic_subtype_mic = 2130837754; // aapt resource value: 0x7f0200fb - public const int ic_launcher_gray = 2130837755; + public const int ic_suggest_scroll_background = 2130837755; // aapt resource value: 0x7f0200fc - public const int ic_launcher_gray_bday = 2130837756; + public const int ic_suggest_strip_microphone = 2130837756; // aapt resource value: 0x7f0200fd - public const int ic_launcher_offline = 2130837757; + public const int ic_suggest_strip_microphone_swipe = 2130837757; // aapt resource value: 0x7f0200fe - public const int ic_launcher_red = 2130837758; + public const int ic_unlocked_gray = 2130837758; // aapt resource value: 0x7f0200ff - public const int ic_menu_add_field_holo_light = 2130837759; + public const int keyboard_background = 2130837759; // aapt resource value: 0x7f020100 - public const int ic_menu_add_field_holodark = 2130837760; + public const int keyboard_dark_background = 2130837760; // aapt resource value: 0x7f020101 - public const int ic_menu_copy_holo_light = 2130837761; + public const int keyboard_hint_0 = 2130837761; // aapt resource value: 0x7f020102 - public const int ic_menu_remove_field_holo_light = 2130837762; + public const int keyboard_hint_1 = 2130837762; // aapt resource value: 0x7f020103 - public const int ic_menu_remove_field_holodark = 2130837763; + public const int keyboard_hint_2 = 2130837763; // aapt resource value: 0x7f020104 - public const int ic_menu_view = 2130837764; + public const int keyboard_hint_3 = 2130837764; // aapt resource value: 0x7f020105 - public const int ic_mic_dialog = 2130837765; + public const int keyboard_hint_4 = 2130837765; // aapt resource value: 0x7f020106 - public const int ic_storage_androidget = 2130837766; + public const int keyboard_hint_5 = 2130837766; // aapt resource value: 0x7f020107 - public const int ic_storage_androidsend = 2130837767; + public const int keyboard_hint_6 = 2130837767; // aapt resource value: 0x7f020108 - public const int ic_storage_dropbox = 2130837768; + public const int keyboard_hint_7 = 2130837768; // aapt resource value: 0x7f020109 - public const int ic_storage_dropboxKP2A = 2130837769; + public const int keyboard_hint_8 = 2130837769; // aapt resource value: 0x7f02010a - public const int ic_storage_file = 2130837770; + public const int keyboard_hint_9 = 2130837770; // aapt resource value: 0x7f02010b - public const int ic_storage_ftp = 2130837771; + public const int keyboard_key_feedback = 2130837771; // aapt resource value: 0x7f02010c - public const int ic_storage_gdrive = 2130837772; + public const int keyboard_key_feedback_background = 2130837772; // aapt resource value: 0x7f02010d - public const int ic_storage_http = 2130837773; + public const int keyboard_key_feedback_more_background = 2130837773; // aapt resource value: 0x7f02010e - public const int ic_storage_https = 2130837774; + public const int keyboard_popup_panel_background = 2130837774; // aapt resource value: 0x7f02010f - public const int ic_storage_sftp = 2130837775; + public const int keyboard_suggest_strip = 2130837775; // aapt resource value: 0x7f020110 - public const int ic_storage_skydrive = 2130837776; + public const int keyboard_suggest_strip_divider = 2130837776; // aapt resource value: 0x7f020111 - public const int ic_subtype_keyboard = 2130837777; + public const int list_selector_background_pressed = 2130837777; // aapt resource value: 0x7f020112 - public const int ic_subtype_mic = 2130837778; + public const int location_web_site = 2130837778; // aapt resource value: 0x7f020113 - public const int ic_suggest_scroll_background = 2130837779; + public const int location_web_site_holodark = 2130837779; // aapt resource value: 0x7f020114 - public const int ic_suggest_strip_microphone = 2130837780; + public const int mic_slash = 2130837780; // aapt resource value: 0x7f020115 - public const int ic_suggest_strip_microphone_swipe = 2130837781; + public const int navigation_accept = 2130837781; // aapt resource value: 0x7f020116 - public const int ic_unlocked_gray = 2130837782; + public const int navigation_accept_dark = 2130837782; // aapt resource value: 0x7f020117 - public const int keyboard_background = 2130837783; + public const int navigation_cancel = 2130837783; // aapt resource value: 0x7f020118 - public const int keyboard_dark_background = 2130837784; + public const int navigation_cancel_holodark = 2130837784; // aapt resource value: 0x7f020119 - public const int keyboard_hint_0 = 2130837785; + public const int navigation_previous_item = 2130837785; // aapt resource value: 0x7f02011a - public const int keyboard_hint_1 = 2130837786; + public const int navigation_previous_item_dark = 2130837786; // aapt resource value: 0x7f02011b - public const int keyboard_hint_2 = 2130837787; + public const int notify = 2130837787; // aapt resource value: 0x7f02011c - public const int keyboard_hint_3 = 2130837788; + public const int notify_keyboard = 2130837788; // aapt resource value: 0x7f02011d - public const int keyboard_hint_4 = 2130837789; + public const int ok_cancel = 2130837789; // aapt resource value: 0x7f02011e - public const int keyboard_hint_5 = 2130837790; + public const int oktoberfest = 2130837790; // aapt resource value: 0x7f02011f - public const int keyboard_hint_6 = 2130837791; + public const int old_ic_launcher_gray = 2130837791; // aapt resource value: 0x7f020120 - public const int keyboard_hint_7 = 2130837792; + public const int RedButton = 2130837792; // aapt resource value: 0x7f020121 - public const int keyboard_hint_8 = 2130837793; + public const int section_header = 2130837793; // aapt resource value: 0x7f020122 - public const int keyboard_hint_9 = 2130837794; + public const int speak_now_level0 = 2130837794; // aapt resource value: 0x7f020123 - public const int keyboard_key_feedback = 2130837795; + public const int speak_now_level1 = 2130837795; // aapt resource value: 0x7f020124 - public const int keyboard_key_feedback_background = 2130837796; + public const int speak_now_level2 = 2130837796; // aapt resource value: 0x7f020125 - public const int keyboard_key_feedback_more_background = 2130837797; + public const int speak_now_level3 = 2130837797; // aapt resource value: 0x7f020126 - public const int keyboard_popup_panel_background = 2130837798; + public const int speak_now_level4 = 2130837798; // aapt resource value: 0x7f020127 - public const int keyboard_suggest_strip = 2130837799; + public const int speak_now_level5 = 2130837799; // aapt resource value: 0x7f020128 - public const int keyboard_suggest_strip_divider = 2130837800; + public const int speak_now_level6 = 2130837800; // aapt resource value: 0x7f020129 - public const int list_selector_background_pressed = 2130837801; + public const int sym_bkeyboard_123_mic = 2130837801; // aapt resource value: 0x7f02012a - public const int location_web_site = 2130837802; + public const int sym_bkeyboard_delete = 2130837802; // aapt resource value: 0x7f02012b - public const int location_web_site_holodark = 2130837803; + public const int sym_bkeyboard_done = 2130837803; // aapt resource value: 0x7f02012c - public const int mic_slash = 2130837804; + public const int sym_bkeyboard_kp2a = 2130837804; // aapt resource value: 0x7f02012d - public const int navigation_accept = 2130837805; + public const int sym_bkeyboard_mic = 2130837805; // aapt resource value: 0x7f02012e - public const int navigation_accept_dark = 2130837806; + public const int sym_bkeyboard_num0 = 2130837806; // aapt resource value: 0x7f02012f - public const int navigation_cancel = 2130837807; + public const int sym_bkeyboard_num1 = 2130837807; // aapt resource value: 0x7f020130 - public const int navigation_cancel_holodark = 2130837808; + public const int sym_bkeyboard_num2 = 2130837808; // aapt resource value: 0x7f020131 - public const int navigation_previous_item = 2130837809; + public const int sym_bkeyboard_num3 = 2130837809; // aapt resource value: 0x7f020132 - public const int navigation_previous_item_dark = 2130837810; + public const int sym_bkeyboard_num4 = 2130837810; // aapt resource value: 0x7f020133 - public const int notify = 2130837811; + public const int sym_bkeyboard_num5 = 2130837811; // aapt resource value: 0x7f020134 - public const int notify_keyboard = 2130837812; + public const int sym_bkeyboard_num6 = 2130837812; // aapt resource value: 0x7f020135 - public const int ok_cancel = 2130837813; + public const int sym_bkeyboard_num7 = 2130837813; // aapt resource value: 0x7f020136 - public const int oktoberfest = 2130837814; + public const int sym_bkeyboard_num8 = 2130837814; // aapt resource value: 0x7f020137 - public const int old_ic_launcher_gray = 2130837815; + public const int sym_bkeyboard_num9 = 2130837815; // aapt resource value: 0x7f020138 - public const int RedButton = 2130837816; + public const int sym_bkeyboard_numalt = 2130837816; // aapt resource value: 0x7f020139 - public const int section_header = 2130837817; + public const int sym_bkeyboard_numpound = 2130837817; // aapt resource value: 0x7f02013a - public const int speak_now_level0 = 2130837818; + public const int sym_bkeyboard_numstar = 2130837818; // aapt resource value: 0x7f02013b - public const int speak_now_level1 = 2130837819; + public const int sym_bkeyboard_return = 2130837819; // aapt resource value: 0x7f02013c - public const int speak_now_level2 = 2130837820; + public const int sym_bkeyboard_search = 2130837820; // aapt resource value: 0x7f02013d - public const int speak_now_level3 = 2130837821; + public const int sym_bkeyboard_settings = 2130837821; // aapt resource value: 0x7f02013e - public const int speak_now_level4 = 2130837822; + public const int sym_bkeyboard_shift = 2130837822; // aapt resource value: 0x7f02013f - public const int speak_now_level5 = 2130837823; + public const int sym_bkeyboard_shift_locked = 2130837823; // aapt resource value: 0x7f020140 - public const int speak_now_level6 = 2130837824; + public const int sym_bkeyboard_space = 2130837824; // aapt resource value: 0x7f020141 - public const int sym_bkeyboard_123_mic = 2130837825; + public const int sym_bkeyboard_tab = 2130837825; // aapt resource value: 0x7f020142 - public const int sym_bkeyboard_delete = 2130837826; + public const int sym_keyboard = 2130837826; // aapt resource value: 0x7f020143 - public const int sym_bkeyboard_done = 2130837827; + public const int sym_keyboard_123_mic = 2130837827; // aapt resource value: 0x7f020144 - public const int sym_bkeyboard_kp2a = 2130837828; + public const int sym_keyboard_delete = 2130837828; // aapt resource value: 0x7f020145 - public const int sym_bkeyboard_mic = 2130837829; + public const int sym_keyboard_done = 2130837829; // aapt resource value: 0x7f020146 - public const int sym_bkeyboard_num0 = 2130837830; + public const int sym_keyboard_feedback_123_mic = 2130837830; // aapt resource value: 0x7f020147 - public const int sym_bkeyboard_num1 = 2130837831; + public const int sym_keyboard_feedback_delete = 2130837831; // aapt resource value: 0x7f020148 - public const int sym_bkeyboard_num2 = 2130837832; + public const int sym_keyboard_feedback_done = 2130837832; // aapt resource value: 0x7f020149 - public const int sym_bkeyboard_num3 = 2130837833; + public const int sym_keyboard_feedback_kp2a = 2130837833; // aapt resource value: 0x7f02014a - public const int sym_bkeyboard_num4 = 2130837834; + public const int sym_keyboard_feedback_language_arrows_left = 2130837834; // aapt resource value: 0x7f02014b - public const int sym_bkeyboard_num5 = 2130837835; + public const int sym_keyboard_feedback_language_arrows_right = 2130837835; // aapt resource value: 0x7f02014c - public const int sym_bkeyboard_num6 = 2130837836; + public const int sym_keyboard_feedback_mic = 2130837836; // aapt resource value: 0x7f02014d - public const int sym_bkeyboard_num7 = 2130837837; + public const int sym_keyboard_feedback_numalt = 2130837837; // aapt resource value: 0x7f02014e - public const int sym_bkeyboard_num8 = 2130837838; + public const int sym_keyboard_feedback_return = 2130837838; // aapt resource value: 0x7f02014f - public const int sym_bkeyboard_num9 = 2130837839; + public const int sym_keyboard_feedback_search = 2130837839; // aapt resource value: 0x7f020150 - public const int sym_bkeyboard_numalt = 2130837840; + public const int sym_keyboard_feedback_settings = 2130837840; // aapt resource value: 0x7f020151 - public const int sym_bkeyboard_numpound = 2130837841; + public const int sym_keyboard_feedback_shift = 2130837841; // aapt resource value: 0x7f020152 - public const int sym_bkeyboard_numstar = 2130837842; + public const int sym_keyboard_feedback_shift_locked = 2130837842; // aapt resource value: 0x7f020153 - public const int sym_bkeyboard_return = 2130837843; + public const int sym_keyboard_feedback_space = 2130837843; // aapt resource value: 0x7f020154 - public const int sym_bkeyboard_search = 2130837844; + public const int sym_keyboard_feedback_tab = 2130837844; // aapt resource value: 0x7f020155 - public const int sym_bkeyboard_settings = 2130837845; + public const int sym_keyboard_kp2a = 2130837845; // aapt resource value: 0x7f020156 - public const int sym_bkeyboard_shift = 2130837846; + public const int sym_keyboard_language_arrows_left = 2130837846; // aapt resource value: 0x7f020157 - public const int sym_bkeyboard_shift_locked = 2130837847; + public const int sym_keyboard_language_arrows_right = 2130837847; // aapt resource value: 0x7f020158 - public const int sym_bkeyboard_space = 2130837848; + public const int sym_keyboard_mic = 2130837848; // aapt resource value: 0x7f020159 - public const int sym_bkeyboard_tab = 2130837849; + public const int sym_keyboard_num0 = 2130837849; // aapt resource value: 0x7f02015a - public const int sym_keyboard = 2130837850; + public const int sym_keyboard_num1 = 2130837850; // aapt resource value: 0x7f02015b - public const int sym_keyboard_123_mic = 2130837851; + public const int sym_keyboard_num2 = 2130837851; // aapt resource value: 0x7f02015c - public const int sym_keyboard_delete = 2130837852; + public const int sym_keyboard_num3 = 2130837852; // aapt resource value: 0x7f02015d - public const int sym_keyboard_done = 2130837853; + public const int sym_keyboard_num4 = 2130837853; // aapt resource value: 0x7f02015e - public const int sym_keyboard_feedback_123_mic = 2130837854; + public const int sym_keyboard_num5 = 2130837854; // aapt resource value: 0x7f02015f - public const int sym_keyboard_feedback_delete = 2130837855; + public const int sym_keyboard_num6 = 2130837855; // aapt resource value: 0x7f020160 - public const int sym_keyboard_feedback_done = 2130837856; + public const int sym_keyboard_num7 = 2130837856; // aapt resource value: 0x7f020161 - public const int sym_keyboard_feedback_kp2a = 2130837857; + public const int sym_keyboard_num8 = 2130837857; // aapt resource value: 0x7f020162 - public const int sym_keyboard_feedback_language_arrows_left = 2130837858; + public const int sym_keyboard_num9 = 2130837858; // aapt resource value: 0x7f020163 - public const int sym_keyboard_feedback_language_arrows_right = 2130837859; + public const int sym_keyboard_numalt = 2130837859; // aapt resource value: 0x7f020164 - public const int sym_keyboard_feedback_mic = 2130837860; + public const int sym_keyboard_numpound = 2130837860; // aapt resource value: 0x7f020165 - public const int sym_keyboard_feedback_numalt = 2130837861; + public const int sym_keyboard_numstar = 2130837861; // aapt resource value: 0x7f020166 - public const int sym_keyboard_feedback_return = 2130837862; + public const int sym_keyboard_return = 2130837862; // aapt resource value: 0x7f020167 - public const int sym_keyboard_feedback_search = 2130837863; + public const int sym_keyboard_search = 2130837863; // aapt resource value: 0x7f020168 - public const int sym_keyboard_feedback_settings = 2130837864; + public const int sym_keyboard_settings = 2130837864; // aapt resource value: 0x7f020169 - public const int sym_keyboard_feedback_shift = 2130837865; + public const int sym_keyboard_shift = 2130837865; // aapt resource value: 0x7f02016a - public const int sym_keyboard_feedback_shift_locked = 2130837866; + public const int sym_keyboard_shift_lock = 2130837866; // aapt resource value: 0x7f02016b - public const int sym_keyboard_feedback_space = 2130837867; + public const int sym_keyboard_shift_locked = 2130837867; // aapt resource value: 0x7f02016c - public const int sym_keyboard_feedback_tab = 2130837868; + public const int sym_keyboard_space = 2130837868; // aapt resource value: 0x7f02016d - public const int sym_keyboard_kp2a = 2130837869; + public const int sym_keyboard_space_led = 2130837869; // aapt resource value: 0x7f02016e - public const int sym_keyboard_language_arrows_left = 2130837870; + public const int sym_keyboard_tab = 2130837870; // aapt resource value: 0x7f02016f - public const int sym_keyboard_language_arrows_right = 2130837871; + public const int transparent = 2130837871; // aapt resource value: 0x7f020170 - public const int sym_keyboard_mic = 2130837872; + public const int vdots = 2130837872; // aapt resource value: 0x7f020171 - public const int sym_keyboard_num0 = 2130837873; + public const int vdots_holodark = 2130837873; // aapt resource value: 0x7f020172 - public const int sym_keyboard_num1 = 2130837874; + public const int voice_ime_background = 2130837874; // aapt resource value: 0x7f020173 - public const int sym_keyboard_num2 = 2130837875; + public const int voice_swipe_hint = 2130837875; // aapt resource value: 0x7f020174 - public const int sym_keyboard_num3 = 2130837876; + public const int working = 2130837876; // aapt resource value: 0x7f020175 - public const int sym_keyboard_num4 = 2130837877; - - // aapt resource value: 0x7f020176 - public const int sym_keyboard_num5 = 2130837878; - - // aapt resource value: 0x7f020177 - public const int sym_keyboard_num6 = 2130837879; - - // aapt resource value: 0x7f020178 - public const int sym_keyboard_num7 = 2130837880; - - // aapt resource value: 0x7f020179 - public const int sym_keyboard_num8 = 2130837881; - - // aapt resource value: 0x7f02017a - public const int sym_keyboard_num9 = 2130837882; - - // aapt resource value: 0x7f02017b - public const int sym_keyboard_numalt = 2130837883; - - // aapt resource value: 0x7f02017c - public const int sym_keyboard_numpound = 2130837884; - - // aapt resource value: 0x7f02017d - public const int sym_keyboard_numstar = 2130837885; - - // aapt resource value: 0x7f02017e - public const int sym_keyboard_return = 2130837886; - - // aapt resource value: 0x7f02017f - public const int sym_keyboard_search = 2130837887; - - // aapt resource value: 0x7f020180 - public const int sym_keyboard_settings = 2130837888; - - // aapt resource value: 0x7f020181 - public const int sym_keyboard_shift = 2130837889; - - // aapt resource value: 0x7f020182 - public const int sym_keyboard_shift_lock = 2130837890; - - // aapt resource value: 0x7f020183 - public const int sym_keyboard_shift_locked = 2130837891; - - // aapt resource value: 0x7f020184 - public const int sym_keyboard_space = 2130837892; - - // aapt resource value: 0x7f020185 - public const int sym_keyboard_space_led = 2130837893; - - // aapt resource value: 0x7f020186 - public const int sym_keyboard_tab = 2130837894; - - // aapt resource value: 0x7f020187 - public const int transparent = 2130837895; - - // aapt resource value: 0x7f020188 - public const int vdots = 2130837896; - - // aapt resource value: 0x7f020189 - public const int vdots_holodark = 2130837897; - - // aapt resource value: 0x7f02018a - public const int voice_ime_background = 2130837898; - - // aapt resource value: 0x7f02018b - public const int voice_swipe_hint = 2130837899; - - // aapt resource value: 0x7f02018c - public const int working = 2130837900; - - // aapt resource value: 0x7f02018d - public const int YellowButton = 2130837901; + public const int YellowButton = 2130837877; static Drawable() { @@ -1973,977 +1823,971 @@ namespace keepass2android public partial class Id { - // aapt resource value: 0x7f08001e - public const int Credit = 2131230750; - - // aapt resource value: 0x7f08001f - public const int Credit2 = 2131230751; - - // aapt resource value: 0x7f0800d1 - public const int IconGridView = 2131230929; - - // aapt resource value: 0x7f0800d3 - public const int LatinKeyboardBaseView = 2131230931; - - // aapt resource value: 0x7f0800d2 - public const int LatinkeyboardBaseView = 2131230930; - - // aapt resource value: 0x7f0800fe - public const int QuickUnlock_button = 2131230974; - - // aapt resource value: 0x7f0800ff - public const int QuickUnlock_buttonLock = 2131230975; - - // aapt resource value: 0x7f0800fc - public const int QuickUnlock_label = 2131230972; - - // aapt resource value: 0x7f0800fd - public const int QuickUnlock_password = 2131230973; - - // aapt resource value: 0x7f0800b3 - public const int RelativeLayout = 2131230899; - - // aapt resource value: 0x7f0800b2 - public const int ScrollView = 2131230898; - - // aapt resource value: 0x7f080009 - public const int about_title = 2131230729; - - // aapt resource value: 0x7f0800b0 - public const int accept_button = 2131230896; - - // aapt resource value: 0x7f080068 - public const int add_advanced = 2131230824; - - // aapt resource value: 0x7f0800c5 - public const int add_entry = 2131230917; - - // aapt resource value: 0x7f0800c4 - public const int add_group = 2131230916; - - // aapt resource value: 0x7f08011a - public const int add_url_entry = 2131231002; - - // aapt resource value: 0x7f080067 - public const int advanced_container = 2131230823; - - // aapt resource value: 0x7f080028 - public const int afc_button_go_back = 2131230760; - - // aapt resource value: 0x7f080029 - public const int afc_button_go_forward = 2131230761; - - // aapt resource value: 0x7f080037 - public const int afc_button_ok = 2131230775; - - // aapt resource value: 0x7f08003e - public const int afc_button_sort_by_date_asc = 2131230782; - - // aapt resource value: 0x7f08003f - public const int afc_button_sort_by_date_desc = 2131230783; - - // aapt resource value: 0x7f08003a - public const int afc_button_sort_by_name_asc = 2131230778; - - // aapt resource value: 0x7f08003b - public const int afc_button_sort_by_name_desc = 2131230779; - - // aapt resource value: 0x7f08003c - public const int afc_button_sort_by_size_asc = 2131230780; - - // aapt resource value: 0x7f08003d - public const int afc_button_sort_by_size_desc = 2131230781; - - // aapt resource value: 0x7f080026 - public const int afc_checkbox_selection = 2131230758; - - // aapt resource value: 0x7f080034 - public const int afc_footer_view_divider = 2131230772; - - // aapt resource value: 0x7f080020 - public const int afc_fragment_files = 2131230752; - - // aapt resource value: 0x7f08002d - public const int afc_header_view_divider = 2131230765; - - // aapt resource value: 0x7f080022 - public const int afc_imageview_icon = 2131230754; - - // aapt resource value: 0x7f080023 - public const int afc_imageview_locked_symbol = 2131230755; - - // aapt resource value: 0x7f080021 - public const int afc_listview_menu = 2131230753; - - // aapt resource value: 0x7f080136 - public const int afc_menuitem_home = 2131231030; - - // aapt resource value: 0x7f080139 - public const int afc_menuitem_new_folder = 2131231033; - - // aapt resource value: 0x7f080137 - public const int afc_menuitem_sort = 2131231031; - - // aapt resource value: 0x7f080138 - public const int afc_menuitem_switch_viewmode = 2131231032; - - // aapt resource value: 0x7f080041 - public const int afc_progress_bar = 2131230785; - - // aapt resource value: 0x7f080040 - public const int afc_text1 = 2131230784; - - // aapt resource value: 0x7f080042 - public const int afc_textview = 2131230786; - - // aapt resource value: 0x7f080025 - public const int afc_textview_file_info = 2131230757; - - // aapt resource value: 0x7f080024 - public const int afc_textview_filename = 2131230756; - - // aapt resource value: 0x7f08002e - public const int afc_textview_full_dir_name = 2131230766; - - // aapt resource value: 0x7f080039 - public const int afc_textview_home = 2131230777; - - // aapt resource value: 0x7f080036 - public const int afc_textview_saveas_filename = 2131230774; - - // aapt resource value: 0x7f080031 - public const int afc_view_files_container = 2131230769; - - // aapt resource value: 0x7f080032 - public const int afc_view_files_footer_view = 2131230770; - - // aapt resource value: 0x7f080033 - public const int afc_view_loading = 2131230771; - - // aapt resource value: 0x7f08002c - public const int afc_view_locations = 2131230764; - - // aapt resource value: 0x7f08002b - public const int afc_view_locations_container = 2131230763; - - // aapt resource value: 0x7f080038 - public const int afc_viewgroup_bookmarks = 2131230776; - - // aapt resource value: 0x7f08002a - public const int afc_viewgroup_button_locations = 2131230762; - - // aapt resource value: 0x7f080030 - public const int afc_viewgroup_files = 2131230768; - - // aapt resource value: 0x7f080035 - public const int afc_viewgroup_footer = 2131230773; - - // aapt resource value: 0x7f08002f - public const int afc_viewgroup_footer_container = 2131230767; - - // aapt resource value: 0x7f080027 - public const int afc_viewgroup_header = 2131230759; - - // aapt resource value: 0x7f080045 - public const int afc_widget_search_view_button_clear = 2131230789; - - // aapt resource value: 0x7f080043 - public const int afc_widget_search_view_button_search = 2131230787; - - // aapt resource value: 0x7f080044 - public const int afc_widget_search_view_textview_search = 2131230788; - - // aapt resource value: 0x7f08001c - public const int android_filechooser_contrib = 2131230748; - - // aapt resource value: 0x7f080019 - public const int author = 2131230745; - - // aapt resource value: 0x7f08006a - public const int binaries = 2131230826; - - // aapt resource value: 0x7f080008 - public const int black = 2131230728; - - // aapt resource value: 0x7f080005 - public const int bold = 2131230725; - - // aapt resource value: 0x7f08007c - public const int bottom_bar = 2131230844; - - // aapt resource value: 0x7f0800aa - public const int bottom_layout = 2131230890; - - // aapt resource value: 0x7f0800a5 - public const int browse_button = 2131230885; - - // aapt resource value: 0x7f0800fa - public const int btnPluginsOnline = 2131230970; - - // aapt resource value: 0x7f08004a - public const int btn_change_location = 2131230794; - - // aapt resource value: 0x7f080053 - public const int btn_create = 2131230803; - - // aapt resource value: 0x7f0800b8 - public const int btn_length12 = 2131230904; - - // aapt resource value: 0x7f0800b7 - public const int btn_length16 = 2131230903; - - // aapt resource value: 0x7f0800ba - public const int btn_length6 = 2131230906; - - // aapt resource value: 0x7f0800b9 - public const int btn_length8 = 2131230905; - - // aapt resource value: 0x7f080104 - public const int button = 2131230980; - - // aapt resource value: 0x7f080105 - public const int button_text = 2131230981; - - // aapt resource value: 0x7f0800ca - public const int cancel = 2131230922; - - // aapt resource value: 0x7f0800b1 - public const int cancel_button = 2131230897; - - // aapt resource value: 0x7f0800c7 - public const int cancel_insert_element = 2131230919; - - // aapt resource value: 0x7f080046 - public const int candidates = 2131230790; - - // aapt resource value: 0x7f080117 - public const int cbCaseSensitive = 2131230999; - - // aapt resource value: 0x7f080118 - public const int cbExcludeExpiredEntries = 2131231000; - - // aapt resource value: 0x7f08010d - public const int cbRegEx = 2131230989; - - // aapt resource value: 0x7f080116 - public const int cbSearchInGroupName = 2131230998; - - // aapt resource value: 0x7f080113 - public const int cbSearchInNotes = 2131230995; - - // aapt resource value: 0x7f080114 - public const int cbSearchInOtherStrings = 2131230996; - - // aapt resource value: 0x7f080112 - public const int cbSearchInPassword = 2131230994; - - // aapt resource value: 0x7f080115 - public const int cbSearchInTags = 2131230997; - - // aapt resource value: 0x7f08010f - public const int cbSearchInTitle = 2131230991; - - // aapt resource value: 0x7f080110 - public const int cbSearchInUrl = 2131230992; - - // aapt resource value: 0x7f080111 - public const int cbSearchInUsername = 2131230993; - - // aapt resource value: 0x7f0800c3 - public const int cb_brackets = 2131230915; - - // aapt resource value: 0x7f0800be - public const int cb_digits = 2131230910; - - // aapt resource value: 0x7f0800f8 - public const int cb_enabled = 2131230968; - - // aapt resource value: 0x7f0800bd - public const int cb_lowercase = 2131230909; - - // aapt resource value: 0x7f0800bf - public const int cb_minus = 2131230911; - - // aapt resource value: 0x7f0800c1 - public const int cb_space = 2131230913; - - // aapt resource value: 0x7f0800c2 - public const int cb_specials = 2131230914; - - // aapt resource value: 0x7f0800c0 - public const int cb_underline = 2131230912; - - // aapt resource value: 0x7f0800bc - public const int cb_uppercase = 2131230908; - - // aapt resource value: 0x7f080018 - public const int contributors_title = 2131230744; - - // aapt resource value: 0x7f0800a8 - public const int create = 2131230888; - - // aapt resource value: 0x7f080128 - public const int cred_password = 2131231016; - - // aapt resource value: 0x7f080129 - public const int cred_remember_mode = 2131231017; - - // aapt resource value: 0x7f080127 - public const int cred_username = 2131231015; - - // aapt resource value: 0x7f08005d - public const int delete_extra = 2131230813; - - // aapt resource value: 0x7f0800f3 - public const int deny_button = 2131230963; - - // aapt resource value: 0x7f080017 - public const int disclaimer = 2131230743; - - // aapt resource value: 0x7f080016 - public const int disclaimer_title = 2131230742; - - // aapt resource value: 0x7f08000a - public const int divider1 = 2131230730; - - // aapt resource value: 0x7f08000e - public const int divider2 = 2131230734; - - // aapt resource value: 0x7f080015 - public const int divider3 = 2131230741; - - // aapt resource value: 0x7f080014 - public const int donate = 2131230740; - - // aapt resource value: 0x7f080056 - public const int donate_question = 2131230806; - - // aapt resource value: 0x7f080072 - public const int edit_extra = 2131230834; - - // aapt resource value: 0x7f0800f2 - public const int enable_quickunlock = 2131230962; - - // aapt resource value: 0x7f080069 - public const int entry_binaries_label = 2131230825; - - // aapt resource value: 0x7f080066 - public const int entry_comment = 2131230822; - - // aapt resource value: 0x7f080065 - public const int entry_comment_label = 2131230821; - - // aapt resource value: 0x7f08004f - public const int entry_confpassword = 2131230799; - - // aapt resource value: 0x7f080080 - public const int entry_contents = 2131230848; - - // aapt resource value: 0x7f080098 - public const int entry_created = 2131230872; - - // aapt resource value: 0x7f080097 - public const int entry_created_label = 2131230871; - - // aapt resource value: 0x7f08007f - public const int entry_divider2 = 2131230847; - - // aapt resource value: 0x7f08007d - public const int entry_edit = 2131230845; - - // aapt resource value: 0x7f080071 - public const int entry_expires = 2131230833; - - // aapt resource value: 0x7f080070 - public const int entry_expires_checkbox = 2131230832; - - // aapt resource value: 0x7f08006f - public const int entry_expires_label = 2131230831; - - // aapt resource value: 0x7f080076 - public const int entry_extra = 2131230838; - - // aapt resource value: 0x7f080086 - public const int entry_group_name = 2131230854; - - // aapt resource value: 0x7f080083 - public const int entry_group_name_label = 2131230851; - - // aapt resource value: 0x7f080077 - public const int entry_icon = 2131230839; - - // aapt resource value: 0x7f08009b - public const int entry_modified = 2131230875; - - // aapt resource value: 0x7f08009a - public const int entry_modified_label = 2131230874; - - // aapt resource value: 0x7f08007e - public const int entry_move = 2131230846; - - // aapt resource value: 0x7f08006e - public const int entry_override_url = 2131230830; - - // aapt resource value: 0x7f08006d - public const int entry_override_url_label = 2131230829; - - // aapt resource value: 0x7f08004e - public const int entry_password = 2131230798; - - // aapt resource value: 0x7f080063 - public const int entry_password_label = 2131230819; - - // aapt resource value: 0x7f080106 - public const int entry_save = 2131230982; - - // aapt resource value: 0x7f080107 - public const int entry_save_cancel = 2131230983; - - // aapt resource value: 0x7f08005e - public const int entry_scroll = 2131230814; - - // aapt resource value: 0x7f080081 - public const int entry_table = 2131230849; - - // aapt resource value: 0x7f08006c - public const int entry_tags = 2131230828; - - // aapt resource value: 0x7f08006b - public const int entry_tags_label = 2131230827; - - // aapt resource value: 0x7f080078 - public const int entry_text = 2131230840; - - // aapt resource value: 0x7f080079 - public const int entry_text_detail = 2131230841; - - // aapt resource value: 0x7f080060 - public const int entry_title = 2131230816; - - // aapt resource value: 0x7f080062 - public const int entry_url = 2131230818; - - // aapt resource value: 0x7f08008c - public const int entry_url_label = 2131230860; - - // aapt resource value: 0x7f080061 - public const int entry_user_name = 2131230817; - - // aapt resource value: 0x7f080088 - public const int entry_user_name_label = 2131230856; - - // aapt resource value: 0x7f080092 - public const int entryfield_container_comment = 2131230866; - - // aapt resource value: 0x7f080096 - public const int entryfield_container_created = 2131230870; - - // aapt resource value: 0x7f08009c - public const int entryfield_container_expires = 2131230876; - - // aapt resource value: 0x7f080099 - public const int entryfield_container_modified = 2131230873; - - // aapt resource value: 0x7f080095 - public const int entryfield_container_overrideurl = 2131230869; - - // aapt resource value: 0x7f08008f - public const int entryfield_container_password = 2131230863; - - // aapt resource value: 0x7f080094 - public const int entryfield_container_tags = 2131230868; - - // aapt resource value: 0x7f08008b - public const int entryfield_container_url = 2131230859; - - // aapt resource value: 0x7f080087 - public const int entryfield_container_username = 2131230855; - - // aapt resource value: 0x7f080082 - public const int entryfield_group_container = 2131230850; - - // aapt resource value: 0x7f080074 - public const int extra_container = 2131230836; - - // aapt resource value: 0x7f080093 - public const int extra_strings = 2131230867; - - // aapt resource value: 0x7f080073 - public const int extra_title_container = 2131230835; - - // aapt resource value: 0x7f080075 - public const int extra_vdots = 2131230837; - - // aapt resource value: 0x7f080010 - public const int feedback = 2131230736; - - // aapt resource value: 0x7f08000f - public const int feedback_title = 2131230735; - - // aapt resource value: 0x7f08009d - public const int file_filename = 2131230877; - - // aapt resource value: 0x7f08009e - public const int file_listtop = 2131230878; - - // aapt resource value: 0x7f0800ad - public const int file_select = 2131230893; - - // aapt resource value: 0x7f0800db - public const int filename = 2131230939; - - // aapt resource value: 0x7f0800a3 - public const int filename_form = 2131230883; - - // aapt resource value: 0x7f0800d8 - public const int filename_group = 2131230936; - - // aapt resource value: 0x7f0800d9 - public const int filename_label = 2131230937; - - // aapt resource value: 0x7f0800da - public const int filenamescroll = 2131230938; - - // aapt resource value: 0x7f080048 - public const int filestorage_label = 2131230792; - - // aapt resource value: 0x7f080047 - public const int filestorage_logo = 2131230791; - - // aapt resource value: 0x7f0800a9 - public const int fnv_cancel = 2131230889; - - // aapt resource value: 0x7f0800ae - public const int fssa_progress_bar = 2131230894; - // aapt resource value: 0x7f08001a - public const int further_authors = 2131230746; - - // aapt resource value: 0x7f08004c - public const int generate_button = 2131230796; - - // aapt resource value: 0x7f0800b5 - public const int generate_password_button = 2131230901; - - // aapt resource value: 0x7f08007a - public const int group_detail = 2131230842; - - // aapt resource value: 0x7f0800cb - public const int group_icon = 2131230923; - - // aapt resource value: 0x7f0800cd - public const int group_label = 2131230925; - - // aapt resource value: 0x7f0800c8 - public const int group_name = 2131230920; - - // aapt resource value: 0x7f080085 - public const int group_name_vdots = 2131230853; - - // aapt resource value: 0x7f0800cc - public const int group_text = 2131230924; - - // aapt resource value: 0x7f080084 - public const int groupname_container = 2131230852; - - // aapt resource value: 0x7f080126 - public const int help = 2131231014; - - // aapt resource value: 0x7f080004 - public const int hybrid = 2131230724; - - // aapt resource value: 0x7f0800ce - public const int icon = 2131230926; - - // aapt resource value: 0x7f08005f - public const int icon_button = 2131230815; - - // aapt resource value: 0x7f0800cf - public const int icon_image = 2131230927; - - // aapt resource value: 0x7f0800d0 - public const int icon_text = 2131230928; - - // aapt resource value: 0x7f080102 - public const int image = 2131230978; - - // aapt resource value: 0x7f0800d4 - public const int imgIcon = 2131230932; - - // aapt resource value: 0x7f0800ab - public const int imglogo = 2131230891; - - // aapt resource value: 0x7f080057 - public const int imgoktfest = 2131230807; - - // aapt resource value: 0x7f0800e3 - public const int init_otp = 2131230947; - - // aapt resource value: 0x7f080123 - public const int initial_dir = 2131231011; - - // aapt resource value: 0x7f0800c6 - public const int insert_element = 2131230918; - - // aapt resource value: 0x7f080006 - public const int italic = 2131230726; - - // aapt resource value: 0x7f08001d - public const int keyboard_contrib = 2131230749; - - // aapt resource value: 0x7f0800df - public const int keyfileLine = 2131230943; - - // aapt resource value: 0x7f080052 - public const int keyfile_filename = 2131230802; - - // aapt resource value: 0x7f080050 - public const int keyfile_title = 2131230800; - - // aapt resource value: 0x7f0800f1 - public const int kill_app = 2131230961; - - // aapt resource value: 0x7f0800ac - public const int label_app_name = 2131230892; - - // aapt resource value: 0x7f080049 - public const int label_filename = 2131230793; - - // aapt resource value: 0x7f0800a4 - public const int label_open_by_filename = 2131230884; - - // aapt resource value: 0x7f0800a6 - public const int label_open_by_filename_details = 2131230886; - - // aapt resource value: 0x7f08009f - public const int label_warning = 2131230879; - - // aapt resource value: 0x7f0800bb - public const int length = 2131230907; - - // aapt resource value: 0x7f0800b6 - public const int length_label = 2131230902; - - // aapt resource value: 0x7f08010c - public const int linearLayout1 = 2131230988; - - // aapt resource value: 0x7f080100 - public const int main_image = 2131230976; - - // aapt resource value: 0x7f08013d - public const int menu_about = 2131231037; - - // aapt resource value: 0x7f08013e - public const int menu_app_settings = 2131231038; - - // aapt resource value: 0x7f080143 - public const int menu_change_db = 2131231043; - - // aapt resource value: 0x7f08013c - public const int menu_donate = 2131231036; - - // aapt resource value: 0x7f08013a - public const int menu_lock = 2131231034; - - // aapt resource value: 0x7f08013f - public const int menu_search = 2131231039; - - // aapt resource value: 0x7f080140 - public const int menu_search_advanced = 2131231040; - - // aapt resource value: 0x7f080142 - public const int menu_sort = 2131231042; - - // aapt resource value: 0x7f080141 - public const int menu_sync = 2131231041; - - // aapt resource value: 0x7f08013b - public const int menu_toggle_pass = 2131231035; - - // aapt resource value: 0x7f08012c - public const int mode_email = 2131231020; - - // aapt resource value: 0x7f080131 - public const int mode_email_with_settings_key = 2131231025; - - // aapt resource value: 0x7f08012d - public const int mode_im = 2131231021; - - // aapt resource value: 0x7f080132 - public const int mode_im_with_settings_key = 2131231026; - - // aapt resource value: 0x7f08012a - public const int mode_normal = 2131231018; - - // aapt resource value: 0x7f08012f - public const int mode_normal_with_settings_key = 2131231023; - - // aapt resource value: 0x7f080134 - public const int mode_symbols = 2131231028; - - // aapt resource value: 0x7f080135 - public const int mode_symbols_with_settings_key = 2131231029; - - // aapt resource value: 0x7f08012b - public const int mode_url = 2131231019; - - // aapt resource value: 0x7f080130 - public const int mode_url_with_settings_key = 2131231024; - - // aapt resource value: 0x7f08012e - public const int mode_webentry = 2131231022; - - // aapt resource value: 0x7f080133 - public const int mode_webentry_with_settings_key = 2131231027; - - // aapt resource value: 0x7f080059 - public const int no_donate = 2131230809; - - // aapt resource value: 0x7f08011b - public const int no_results = 2131231003; - - // aapt resource value: 0x7f080000 - public const int none = 2131230720; - - // aapt resource value: 0x7f080001 - public const int normal = 2131230721; - - // aapt resource value: 0x7f0800c9 - public const int ok = 2131230921; - - // aapt resource value: 0x7f080058 - public const int ok_donate = 2131230808; - - // aapt resource value: 0x7f0800a7 - public const int open = 2131230887; - - // aapt resource value: 0x7f0800e7 - public const int otp1 = 2131230951; - - // aapt resource value: 0x7f0800e8 - public const int otp2 = 2131230952; - - // aapt resource value: 0x7f0800e9 - public const int otp3 = 2131230953; - - // aapt resource value: 0x7f0800ea - public const int otp4 = 2131230954; - - // aapt resource value: 0x7f0800eb - public const int otp5 = 2131230955; - - // aapt resource value: 0x7f0800ec - public const int otp6 = 2131230956; - - // aapt resource value: 0x7f0800e5 - public const int otpEntry = 2131230949; - - // aapt resource value: 0x7f0800e2 - public const int otpInitView = 2131230946; - - // aapt resource value: 0x7f0800ed - public const int otpSecretLine = 2131230957; - - // aapt resource value: 0x7f0800e1 - public const int otpView = 2131230945; - - // aapt resource value: 0x7f0800e6 - public const int otp_expl = 2131230950; - - // aapt resource value: 0x7f0800e4 - public const int otps_pending = 2131230948; - - // aapt resource value: 0x7f0800ef - public const int otpsecret_format_spinner = 2131230959; - - // aapt resource value: 0x7f08011d - public const int pass_conf_password = 2131231005; - - // aapt resource value: 0x7f0800e0 - public const int pass_keyfile = 2131230944; - - // aapt resource value: 0x7f0800f0 - public const int pass_ok = 2131230960; - - // aapt resource value: 0x7f0800ee - public const int pass_otpsecret = 2131230958; - - // aapt resource value: 0x7f08011c - public const int pass_password = 2131231004; - - // aapt resource value: 0x7f0800b4 - public const int password = 2131230900; - - // aapt resource value: 0x7f0800de - public const int passwordLine = 2131230942; - - // aapt resource value: 0x7f080090 - public const int password_container = 2131230864; - - // aapt resource value: 0x7f0800dc - public const int password_label = 2131230940; - - // aapt resource value: 0x7f0800dd - public const int password_mode_spinner = 2131230941; - - // aapt resource value: 0x7f080064 - public const int password_section = 2131230820; - - // aapt resource value: 0x7f08004b - public const int password_title = 2131230795; - - // aapt resource value: 0x7f080091 - public const int password_vdots = 2131230865; + public const int Credit = 2131230746; // aapt resource value: 0x7f08001b - public const int plugin1 = 2131230747; + public const int Credit2 = 2131230747; - // aapt resource value: 0x7f0800f4 - public const int plugin_scroll = 2131230964; + // aapt resource value: 0x7f0800cd + public const int IconGridView = 2131230925; - // aapt resource value: 0x7f08011f - public const int portsep = 2131231007; + // aapt resource value: 0x7f0800cf + public const int LatinKeyboardBaseView = 2131230927; - // aapt resource value: 0x7f080103 - public const int progress = 2131230979; - - // aapt resource value: 0x7f08005c - public const int protection = 2131230812; + // aapt resource value: 0x7f0800ce + public const int LatinkeyboardBaseView = 2131230926; // aapt resource value: 0x7f0800fb - public const int qu_filename = 2131230971; + public const int QuickUnlock_button = 2131230971; - // aapt resource value: 0x7f080012 - public const int rate = 2131230738; - - // aapt resource value: 0x7f080054 - public const int rounds = 2131230804; - - // aapt resource value: 0x7f080055 - public const int rounds_explaination = 2131230805; - - // aapt resource value: 0x7f080002 - public const int satellite = 2131230722; - - // aapt resource value: 0x7f0800f5 - public const int scopes_list = 2131230965; + // aapt resource value: 0x7f0800fc + public const int QuickUnlock_buttonLock = 2131230972; // aapt resource value: 0x7f0800f9 - public const int scopes_title = 2131230969; + public const int QuickUnlock_label = 2131230969; - // aapt resource value: 0x7f08010b - public const int scrollView1 = 2131230987; - - // aapt resource value: 0x7f08010a - public const int searchEditText = 2131230986; - - // aapt resource value: 0x7f080109 - public const int search_button = 2131230985; - - // aapt resource value: 0x7f08010e - public const int search_in_label = 2131230990; - - // aapt resource value: 0x7f080108 - public const int search_label = 2131230984; - - // aapt resource value: 0x7f080119 - public const int select_other_entry = 2131231001; - - // aapt resource value: 0x7f08011e - public const int sftp_host = 2131231006; - - // aapt resource value: 0x7f080124 - public const int sftp_initial_dir = 2131231012; - - // aapt resource value: 0x7f080122 - public const int sftp_password = 2131231010; - - // aapt resource value: 0x7f080120 - public const int sftp_port = 2131231008; - - // aapt resource value: 0x7f080121 - public const int sftp_user = 2131231009; - - // aapt resource value: 0x7f0800a2 - public const int start_create = 2131230882; - - // aapt resource value: 0x7f080125 - public const int start_create_import = 2131231013; - - // aapt resource value: 0x7f0800a0 - public const int start_open_file = 2131230880; - - // aapt resource value: 0x7f0800a1 - public const int start_open_url = 2131230881; - - // aapt resource value: 0x7f080011 - public const int suggest = 2131230737; - - // aapt resource value: 0x7f080003 - public const int terrain = 2131230723; - - // aapt resource value: 0x7f080101 - public const int text = 2131230977; + // aapt resource value: 0x7f0800fa + public const int QuickUnlock_password = 2131230970; // aapt resource value: 0x7f0800af - public const int textView = 2131230895; + public const int RelativeLayout = 2131230895; - // aapt resource value: 0x7f08005a - public const int title = 2131230810; + // aapt resource value: 0x7f0800ae + public const int ScrollView = 2131230894; - // aapt resource value: 0x7f08004d - public const int toggle_password = 2131230797; + // aapt resource value: 0x7f080005 + public const int about_title = 2131230725; - // aapt resource value: 0x7f08007b - public const int top = 2131230843; + // aapt resource value: 0x7f0800ac + public const int accept_button = 2131230892; - // aapt resource value: 0x7f080013 - public const int translate = 2131230739; + // aapt resource value: 0x7f080064 + public const int add_advanced = 2131230820; - // aapt resource value: 0x7f0800f6 - public const int txtAuthor = 2131230966; + // aapt resource value: 0x7f0800c1 + public const int add_entry = 2131230913; - // aapt resource value: 0x7f0800d5 - public const int txtLabel = 2131230933; + // aapt resource value: 0x7f0800c0 + public const int add_group = 2131230912; + + // aapt resource value: 0x7f080117 + public const int add_url_entry = 2131230999; + + // aapt resource value: 0x7f080063 + public const int advanced_container = 2131230819; + + // aapt resource value: 0x7f080024 + public const int afc_button_go_back = 2131230756; + + // aapt resource value: 0x7f080025 + public const int afc_button_go_forward = 2131230757; + + // aapt resource value: 0x7f080033 + public const int afc_button_ok = 2131230771; + + // aapt resource value: 0x7f08003a + public const int afc_button_sort_by_date_asc = 2131230778; + + // aapt resource value: 0x7f08003b + public const int afc_button_sort_by_date_desc = 2131230779; + + // aapt resource value: 0x7f080036 + public const int afc_button_sort_by_name_asc = 2131230774; + + // aapt resource value: 0x7f080037 + public const int afc_button_sort_by_name_desc = 2131230775; + + // aapt resource value: 0x7f080038 + public const int afc_button_sort_by_size_asc = 2131230776; + + // aapt resource value: 0x7f080039 + public const int afc_button_sort_by_size_desc = 2131230777; + + // aapt resource value: 0x7f080022 + public const int afc_checkbox_selection = 2131230754; + + // aapt resource value: 0x7f080030 + public const int afc_footer_view_divider = 2131230768; + + // aapt resource value: 0x7f08001c + public const int afc_fragment_files = 2131230748; + + // aapt resource value: 0x7f080029 + public const int afc_header_view_divider = 2131230761; + + // aapt resource value: 0x7f08001e + public const int afc_imageview_icon = 2131230750; + + // aapt resource value: 0x7f08001f + public const int afc_imageview_locked_symbol = 2131230751; + + // aapt resource value: 0x7f08001d + public const int afc_listview_menu = 2131230749; + + // aapt resource value: 0x7f080134 + public const int afc_menuitem_home = 2131231028; + + // aapt resource value: 0x7f080137 + public const int afc_menuitem_new_folder = 2131231031; + + // aapt resource value: 0x7f080135 + public const int afc_menuitem_sort = 2131231029; + + // aapt resource value: 0x7f080136 + public const int afc_menuitem_switch_viewmode = 2131231030; + + // aapt resource value: 0x7f08003d + public const int afc_progress_bar = 2131230781; + + // aapt resource value: 0x7f08003c + public const int afc_text1 = 2131230780; + + // aapt resource value: 0x7f08003e + public const int afc_textview = 2131230782; + + // aapt resource value: 0x7f080021 + public const int afc_textview_file_info = 2131230753; + + // aapt resource value: 0x7f080020 + public const int afc_textview_filename = 2131230752; + + // aapt resource value: 0x7f08002a + public const int afc_textview_full_dir_name = 2131230762; + + // aapt resource value: 0x7f080035 + public const int afc_textview_home = 2131230773; + + // aapt resource value: 0x7f080032 + public const int afc_textview_saveas_filename = 2131230770; + + // aapt resource value: 0x7f08002d + public const int afc_view_files_container = 2131230765; + + // aapt resource value: 0x7f08002e + public const int afc_view_files_footer_view = 2131230766; + + // aapt resource value: 0x7f08002f + public const int afc_view_loading = 2131230767; + + // aapt resource value: 0x7f080028 + public const int afc_view_locations = 2131230760; + + // aapt resource value: 0x7f080027 + public const int afc_view_locations_container = 2131230759; + + // aapt resource value: 0x7f080034 + public const int afc_viewgroup_bookmarks = 2131230772; + + // aapt resource value: 0x7f080026 + public const int afc_viewgroup_button_locations = 2131230758; + + // aapt resource value: 0x7f08002c + public const int afc_viewgroup_files = 2131230764; + + // aapt resource value: 0x7f080031 + public const int afc_viewgroup_footer = 2131230769; + + // aapt resource value: 0x7f08002b + public const int afc_viewgroup_footer_container = 2131230763; + + // aapt resource value: 0x7f080023 + public const int afc_viewgroup_header = 2131230755; + + // aapt resource value: 0x7f080041 + public const int afc_widget_search_view_button_clear = 2131230785; + + // aapt resource value: 0x7f08003f + public const int afc_widget_search_view_button_search = 2131230783; + + // aapt resource value: 0x7f080040 + public const int afc_widget_search_view_textview_search = 2131230784; + + // aapt resource value: 0x7f080018 + public const int android_filechooser_contrib = 2131230744; + + // aapt resource value: 0x7f080015 + public const int author = 2131230741; + + // aapt resource value: 0x7f080066 + public const int binaries = 2131230822; + + // aapt resource value: 0x7f080004 + public const int black = 2131230724; + + // aapt resource value: 0x7f080001 + public const int bold = 2131230721; + + // aapt resource value: 0x7f080078 + public const int bottom_bar = 2131230840; + + // aapt resource value: 0x7f0800a6 + public const int bottom_layout = 2131230886; + + // aapt resource value: 0x7f0800a1 + public const int browse_button = 2131230881; // aapt resource value: 0x7f0800f7 - public const int txtShortDesc = 2131230967; + public const int btnPluginsOnline = 2131230967; - // aapt resource value: 0x7f0800d7 - public const int txtStatus = 2131230935; + // aapt resource value: 0x7f080046 + public const int btn_change_location = 2131230790; - // aapt resource value: 0x7f0800d6 - public const int txtVersion = 2131230934; + // aapt resource value: 0x7f08004f + public const int btn_create = 2131230799; - // aapt resource value: 0x7f08008d - public const int url_container = 2131230861; + // aapt resource value: 0x7f0800b4 + public const int btn_length12 = 2131230900; + + // aapt resource value: 0x7f0800b3 + public const int btn_length16 = 2131230899; + + // aapt resource value: 0x7f0800b6 + public const int btn_length6 = 2131230902; + + // aapt resource value: 0x7f0800b5 + public const int btn_length8 = 2131230901; + + // aapt resource value: 0x7f080101 + public const int button = 2131230977; + + // aapt resource value: 0x7f080102 + public const int button_text = 2131230978; + + // aapt resource value: 0x7f0800c6 + public const int cancel = 2131230918; + + // aapt resource value: 0x7f0800ad + public const int cancel_button = 2131230893; + + // aapt resource value: 0x7f0800c3 + public const int cancel_insert_element = 2131230915; + + // aapt resource value: 0x7f080042 + public const int candidates = 2131230786; + + // aapt resource value: 0x7f080114 + public const int cbCaseSensitive = 2131230996; + + // aapt resource value: 0x7f080115 + public const int cbExcludeExpiredEntries = 2131230997; + + // aapt resource value: 0x7f08010a + public const int cbRegEx = 2131230986; + + // aapt resource value: 0x7f080113 + public const int cbSearchInGroupName = 2131230995; + + // aapt resource value: 0x7f080110 + public const int cbSearchInNotes = 2131230992; + + // aapt resource value: 0x7f080111 + public const int cbSearchInOtherStrings = 2131230993; + + // aapt resource value: 0x7f08010f + public const int cbSearchInPassword = 2131230991; + + // aapt resource value: 0x7f080112 + public const int cbSearchInTags = 2131230994; + + // aapt resource value: 0x7f08010c + public const int cbSearchInTitle = 2131230988; + + // aapt resource value: 0x7f08010d + public const int cbSearchInUrl = 2131230989; + + // aapt resource value: 0x7f08010e + public const int cbSearchInUsername = 2131230990; + + // aapt resource value: 0x7f0800bf + public const int cb_brackets = 2131230911; + + // aapt resource value: 0x7f0800ba + public const int cb_digits = 2131230906; + + // aapt resource value: 0x7f0800f5 + public const int cb_enabled = 2131230965; + + // aapt resource value: 0x7f0800b9 + public const int cb_lowercase = 2131230905; + + // aapt resource value: 0x7f0800bb + public const int cb_minus = 2131230907; + + // aapt resource value: 0x7f0800bd + public const int cb_space = 2131230909; + + // aapt resource value: 0x7f0800be + public const int cb_specials = 2131230910; + + // aapt resource value: 0x7f0800bc + public const int cb_underline = 2131230908; + + // aapt resource value: 0x7f0800b8 + public const int cb_uppercase = 2131230904; + + // aapt resource value: 0x7f080014 + public const int contributors_title = 2131230740; + + // aapt resource value: 0x7f0800a4 + public const int create = 2131230884; + + // aapt resource value: 0x7f080126 + public const int cred_password = 2131231014; + + // aapt resource value: 0x7f080127 + public const int cred_remember_mode = 2131231015; + + // aapt resource value: 0x7f080125 + public const int cred_username = 2131231013; + + // aapt resource value: 0x7f080059 + public const int delete_extra = 2131230809; + + // aapt resource value: 0x7f0800f0 + public const int deny_button = 2131230960; + + // aapt resource value: 0x7f080013 + public const int disclaimer = 2131230739; + + // aapt resource value: 0x7f080012 + public const int disclaimer_title = 2131230738; + + // aapt resource value: 0x7f080006 + public const int divider1 = 2131230726; + + // aapt resource value: 0x7f08000a + public const int divider2 = 2131230730; + + // aapt resource value: 0x7f080011 + public const int divider3 = 2131230737; + + // aapt resource value: 0x7f080010 + public const int donate = 2131230736; + + // aapt resource value: 0x7f080052 + public const int donate_question = 2131230802; + + // aapt resource value: 0x7f08006e + public const int edit_extra = 2131230830; + + // aapt resource value: 0x7f0800ef + public const int enable_quickunlock = 2131230959; + + // aapt resource value: 0x7f080065 + public const int entry_binaries_label = 2131230821; + + // aapt resource value: 0x7f080062 + public const int entry_comment = 2131230818; + + // aapt resource value: 0x7f080061 + public const int entry_comment_label = 2131230817; + + // aapt resource value: 0x7f08004b + public const int entry_confpassword = 2131230795; + + // aapt resource value: 0x7f08007c + public const int entry_contents = 2131230844; + + // aapt resource value: 0x7f080094 + public const int entry_created = 2131230868; + + // aapt resource value: 0x7f080093 + public const int entry_created_label = 2131230867; + + // aapt resource value: 0x7f08007b + public const int entry_divider2 = 2131230843; + + // aapt resource value: 0x7f080079 + public const int entry_edit = 2131230841; + + // aapt resource value: 0x7f08006d + public const int entry_expires = 2131230829; + + // aapt resource value: 0x7f08006c + public const int entry_expires_checkbox = 2131230828; + + // aapt resource value: 0x7f08006b + public const int entry_expires_label = 2131230827; + + // aapt resource value: 0x7f080072 + public const int entry_extra = 2131230834; + + // aapt resource value: 0x7f080082 + public const int entry_group_name = 2131230850; + + // aapt resource value: 0x7f08007f + public const int entry_group_name_label = 2131230847; + + // aapt resource value: 0x7f080073 + public const int entry_icon = 2131230835; + + // aapt resource value: 0x7f080097 + public const int entry_modified = 2131230871; + + // aapt resource value: 0x7f080096 + public const int entry_modified_label = 2131230870; + + // aapt resource value: 0x7f08007a + public const int entry_move = 2131230842; + + // aapt resource value: 0x7f08006a + public const int entry_override_url = 2131230826; + + // aapt resource value: 0x7f080069 + public const int entry_override_url_label = 2131230825; + + // aapt resource value: 0x7f08004a + public const int entry_password = 2131230794; + + // aapt resource value: 0x7f08005f + public const int entry_password_label = 2131230815; + + // aapt resource value: 0x7f080103 + public const int entry_save = 2131230979; + + // aapt resource value: 0x7f080104 + public const int entry_save_cancel = 2131230980; + + // aapt resource value: 0x7f08005a + public const int entry_scroll = 2131230810; + + // aapt resource value: 0x7f08007d + public const int entry_table = 2131230845; + + // aapt resource value: 0x7f080068 + public const int entry_tags = 2131230824; + + // aapt resource value: 0x7f080067 + public const int entry_tags_label = 2131230823; + + // aapt resource value: 0x7f080074 + public const int entry_text = 2131230836; + + // aapt resource value: 0x7f080075 + public const int entry_text_detail = 2131230837; + + // aapt resource value: 0x7f08005c + public const int entry_title = 2131230812; + + // aapt resource value: 0x7f08005e + public const int entry_url = 2131230814; + + // aapt resource value: 0x7f080088 + public const int entry_url_label = 2131230856; + + // aapt resource value: 0x7f08005d + public const int entry_user_name = 2131230813; + + // aapt resource value: 0x7f080084 + public const int entry_user_name_label = 2131230852; // aapt resource value: 0x7f08008e - public const int url_vdots = 2131230862; + public const int entryfield_container_comment = 2131230862; - // aapt resource value: 0x7f080051 - public const int use_keyfile = 2131230801; + // aapt resource value: 0x7f080092 + public const int entryfield_container_created = 2131230866; - // aapt resource value: 0x7f080089 - public const int username_container = 2131230857; + // aapt resource value: 0x7f080098 + public const int entryfield_container_expires = 2131230872; - // aapt resource value: 0x7f08008a - public const int username_vdots = 2131230858; + // aapt resource value: 0x7f080095 + public const int entryfield_container_modified = 2131230869; - // aapt resource value: 0x7f08005b - public const int value = 2131230811; + // aapt resource value: 0x7f080091 + public const int entryfield_container_overrideurl = 2131230865; - // aapt resource value: 0x7f08000d - public const int versionB = 2131230733; + // aapt resource value: 0x7f08008b + public const int entryfield_container_password = 2131230859; + + // aapt resource value: 0x7f080090 + public const int entryfield_container_tags = 2131230864; + + // aapt resource value: 0x7f080087 + public const int entryfield_container_url = 2131230855; + + // aapt resource value: 0x7f080083 + public const int entryfield_container_username = 2131230851; + + // aapt resource value: 0x7f08007e + public const int entryfield_group_container = 2131230846; + + // aapt resource value: 0x7f080070 + public const int extra_container = 2131230832; + + // aapt resource value: 0x7f08008f + public const int extra_strings = 2131230863; + + // aapt resource value: 0x7f08006f + public const int extra_title_container = 2131230831; + + // aapt resource value: 0x7f080071 + public const int extra_vdots = 2131230833; // aapt resource value: 0x7f08000c - public const int versionX = 2131230732; + public const int feedback = 2131230732; // aapt resource value: 0x7f08000b - public const int version_title = 2131230731; + public const int feedback_title = 2131230731; + + // aapt resource value: 0x7f080099 + public const int file_filename = 2131230873; + + // aapt resource value: 0x7f08009a + public const int file_listtop = 2131230874; + + // aapt resource value: 0x7f0800a9 + public const int file_select = 2131230889; + + // aapt resource value: 0x7f0800d7 + public const int filename = 2131230935; + + // aapt resource value: 0x7f08009f + public const int filename_form = 2131230879; + + // aapt resource value: 0x7f0800d4 + public const int filename_group = 2131230932; + + // aapt resource value: 0x7f0800d5 + public const int filename_label = 2131230933; + + // aapt resource value: 0x7f0800d6 + public const int filenamescroll = 2131230934; + + // aapt resource value: 0x7f080044 + public const int filestorage_label = 2131230788; + + // aapt resource value: 0x7f080043 + public const int filestorage_logo = 2131230787; + + // aapt resource value: 0x7f0800a5 + public const int fnv_cancel = 2131230885; + + // aapt resource value: 0x7f0800aa + public const int fssa_progress_bar = 2131230890; + + // aapt resource value: 0x7f080016 + public const int further_authors = 2131230742; + + // aapt resource value: 0x7f080048 + public const int generate_button = 2131230792; + + // aapt resource value: 0x7f0800b1 + public const int generate_password_button = 2131230897; + + // aapt resource value: 0x7f080076 + public const int group_detail = 2131230838; + + // aapt resource value: 0x7f0800c7 + public const int group_icon = 2131230919; + + // aapt resource value: 0x7f0800c9 + public const int group_label = 2131230921; + + // aapt resource value: 0x7f0800c4 + public const int group_name = 2131230916; + + // aapt resource value: 0x7f080081 + public const int group_name_vdots = 2131230849; + + // aapt resource value: 0x7f0800c8 + public const int group_text = 2131230920; + + // aapt resource value: 0x7f080080 + public const int groupname_container = 2131230848; + + // aapt resource value: 0x7f080124 + public const int help = 2131231012; + + // aapt resource value: 0x7f0800ca + public const int icon = 2131230922; + + // aapt resource value: 0x7f08005b + public const int icon_button = 2131230811; + + // aapt resource value: 0x7f0800cb + public const int icon_image = 2131230923; + + // aapt resource value: 0x7f0800cc + public const int icon_text = 2131230924; + + // aapt resource value: 0x7f0800ff + public const int image = 2131230975; + + // aapt resource value: 0x7f0800d0 + public const int imgIcon = 2131230928; + + // aapt resource value: 0x7f0800a7 + public const int imglogo = 2131230887; + + // aapt resource value: 0x7f080053 + public const int imgoktfest = 2131230803; + + // aapt resource value: 0x7f0800e0 + public const int init_otp = 2131230944; + + // aapt resource value: 0x7f080121 + public const int initial_dir = 2131231009; + + // aapt resource value: 0x7f0800c2 + public const int insert_element = 2131230914; + + // aapt resource value: 0x7f080002 + public const int italic = 2131230722; + + // aapt resource value: 0x7f080019 + public const int keyboard_contrib = 2131230745; + + // aapt resource value: 0x7f0800db + public const int keyfileLine = 2131230939; + + // aapt resource value: 0x7f08004e + public const int keyfile_filename = 2131230798; + + // aapt resource value: 0x7f0800dc + public const int keyfile_heading = 2131230940; + + // aapt resource value: 0x7f08004c + public const int keyfile_title = 2131230796; + + // aapt resource value: 0x7f0800ee + public const int kill_app = 2131230958; + + // aapt resource value: 0x7f0800a8 + public const int label_app_name = 2131230888; + + // aapt resource value: 0x7f080045 + public const int label_filename = 2131230789; + + // aapt resource value: 0x7f0800dd + public const int label_keyfilename = 2131230941; + + // aapt resource value: 0x7f0800a0 + public const int label_open_by_filename = 2131230880; + + // aapt resource value: 0x7f0800a2 + public const int label_open_by_filename_details = 2131230882; + + // aapt resource value: 0x7f08009b + public const int label_warning = 2131230875; + + // aapt resource value: 0x7f0800b7 + public const int length = 2131230903; + + // aapt resource value: 0x7f0800b2 + public const int length_label = 2131230898; + + // aapt resource value: 0x7f080109 + public const int linearLayout1 = 2131230985; + + // aapt resource value: 0x7f0800fd + public const int main_image = 2131230973; + + // aapt resource value: 0x7f08013b + public const int menu_about = 2131231035; + + // aapt resource value: 0x7f08013c + public const int menu_app_settings = 2131231036; + + // aapt resource value: 0x7f080141 + public const int menu_change_db = 2131231041; + + // aapt resource value: 0x7f08013a + public const int menu_donate = 2131231034; + + // aapt resource value: 0x7f080138 + public const int menu_lock = 2131231032; + + // aapt resource value: 0x7f08013d + public const int menu_search = 2131231037; + + // aapt resource value: 0x7f08013e + public const int menu_search_advanced = 2131231038; + + // aapt resource value: 0x7f080140 + public const int menu_sort = 2131231040; + + // aapt resource value: 0x7f08013f + public const int menu_sync = 2131231039; + + // aapt resource value: 0x7f080139 + public const int menu_toggle_pass = 2131231033; + + // aapt resource value: 0x7f08012a + public const int mode_email = 2131231018; + + // aapt resource value: 0x7f08012f + public const int mode_email_with_settings_key = 2131231023; + + // aapt resource value: 0x7f08012b + public const int mode_im = 2131231019; + + // aapt resource value: 0x7f080130 + public const int mode_im_with_settings_key = 2131231024; + + // aapt resource value: 0x7f080128 + public const int mode_normal = 2131231016; + + // aapt resource value: 0x7f08012d + public const int mode_normal_with_settings_key = 2131231021; + + // aapt resource value: 0x7f080132 + public const int mode_symbols = 2131231026; + + // aapt resource value: 0x7f080133 + public const int mode_symbols_with_settings_key = 2131231027; + + // aapt resource value: 0x7f080129 + public const int mode_url = 2131231017; + + // aapt resource value: 0x7f08012e + public const int mode_url_with_settings_key = 2131231022; + + // aapt resource value: 0x7f08012c + public const int mode_webentry = 2131231020; + + // aapt resource value: 0x7f080131 + public const int mode_webentry_with_settings_key = 2131231025; + + // aapt resource value: 0x7f080055 + public const int no_donate = 2131230805; + + // aapt resource value: 0x7f080118 + public const int no_results = 2131231000; + + // aapt resource value: 0x7f080000 + public const int normal = 2131230720; + + // aapt resource value: 0x7f0800c5 + public const int ok = 2131230917; + + // aapt resource value: 0x7f080054 + public const int ok_donate = 2131230804; + + // aapt resource value: 0x7f0800a3 + public const int open = 2131230883; + + // aapt resource value: 0x7f0800e4 + public const int otp1 = 2131230948; + + // aapt resource value: 0x7f0800e5 + public const int otp2 = 2131230949; + + // aapt resource value: 0x7f0800e6 + public const int otp3 = 2131230950; + + // aapt resource value: 0x7f0800e7 + public const int otp4 = 2131230951; + + // aapt resource value: 0x7f0800e8 + public const int otp5 = 2131230952; + + // aapt resource value: 0x7f0800e9 + public const int otp6 = 2131230953; + + // aapt resource value: 0x7f0800e2 + public const int otpEntry = 2131230946; + + // aapt resource value: 0x7f0800df + public const int otpInitView = 2131230943; + + // aapt resource value: 0x7f0800ea + public const int otpSecretLine = 2131230954; + + // aapt resource value: 0x7f0800de + public const int otpView = 2131230942; + + // aapt resource value: 0x7f0800e3 + public const int otp_expl = 2131230947; + + // aapt resource value: 0x7f0800e1 + public const int otps_pending = 2131230945; + + // aapt resource value: 0x7f0800ec + public const int otpsecret_format_spinner = 2131230956; + + // aapt resource value: 0x7f08011a + public const int pass_conf_password = 2131231002; + + // aapt resource value: 0x7f08011b + public const int pass_keyfile = 2131231003; + + // aapt resource value: 0x7f0800ed + public const int pass_ok = 2131230957; + + // aapt resource value: 0x7f0800eb + public const int pass_otpsecret = 2131230955; + + // aapt resource value: 0x7f080119 + public const int pass_password = 2131231001; + + // aapt resource value: 0x7f0800b0 + public const int password = 2131230896; + + // aapt resource value: 0x7f0800da + public const int passwordLine = 2131230938; + + // aapt resource value: 0x7f08008c + public const int password_container = 2131230860; + + // aapt resource value: 0x7f0800d8 + public const int password_label = 2131230936; + + // aapt resource value: 0x7f0800d9 + public const int password_mode_spinner = 2131230937; + + // aapt resource value: 0x7f080060 + public const int password_section = 2131230816; + + // aapt resource value: 0x7f080047 + public const int password_title = 2131230791; + + // aapt resource value: 0x7f08008d + public const int password_vdots = 2131230861; + + // aapt resource value: 0x7f080017 + public const int plugin1 = 2131230743; + + // aapt resource value: 0x7f0800f1 + public const int plugin_scroll = 2131230961; + + // aapt resource value: 0x7f08011d + public const int portsep = 2131231005; + + // aapt resource value: 0x7f080100 + public const int progress = 2131230976; + + // aapt resource value: 0x7f080058 + public const int protection = 2131230808; + + // aapt resource value: 0x7f0800f8 + public const int qu_filename = 2131230968; + + // aapt resource value: 0x7f08000e + public const int rate = 2131230734; + + // aapt resource value: 0x7f080050 + public const int rounds = 2131230800; + + // aapt resource value: 0x7f080051 + public const int rounds_explaination = 2131230801; + + // aapt resource value: 0x7f0800f2 + public const int scopes_list = 2131230962; + + // aapt resource value: 0x7f0800f6 + public const int scopes_title = 2131230966; + + // aapt resource value: 0x7f080108 + public const int scrollView1 = 2131230984; + + // aapt resource value: 0x7f080107 + public const int searchEditText = 2131230983; + + // aapt resource value: 0x7f080106 + public const int search_button = 2131230982; + + // aapt resource value: 0x7f08010b + public const int search_in_label = 2131230987; + + // aapt resource value: 0x7f080105 + public const int search_label = 2131230981; + + // aapt resource value: 0x7f080116 + public const int select_other_entry = 2131230998; + + // aapt resource value: 0x7f08011c + public const int sftp_host = 2131231004; + + // aapt resource value: 0x7f080122 + public const int sftp_initial_dir = 2131231010; + + // aapt resource value: 0x7f080120 + public const int sftp_password = 2131231008; + + // aapt resource value: 0x7f08011e + public const int sftp_port = 2131231006; + + // aapt resource value: 0x7f08011f + public const int sftp_user = 2131231007; + + // aapt resource value: 0x7f08009e + public const int start_create = 2131230878; + + // aapt resource value: 0x7f080123 + public const int start_create_import = 2131231011; + + // aapt resource value: 0x7f08009c + public const int start_open_file = 2131230876; + + // aapt resource value: 0x7f08009d + public const int start_open_url = 2131230877; + + // aapt resource value: 0x7f08000d + public const int suggest = 2131230733; + + // aapt resource value: 0x7f0800fe + public const int text = 2131230974; + + // aapt resource value: 0x7f0800ab + public const int textView = 2131230891; + + // aapt resource value: 0x7f080056 + public const int title = 2131230806; + + // aapt resource value: 0x7f080049 + public const int toggle_password = 2131230793; + + // aapt resource value: 0x7f080077 + public const int top = 2131230839; + + // aapt resource value: 0x7f08000f + public const int translate = 2131230735; + + // aapt resource value: 0x7f0800f3 + public const int txtAuthor = 2131230963; + + // aapt resource value: 0x7f0800d1 + public const int txtLabel = 2131230929; + + // aapt resource value: 0x7f0800f4 + public const int txtShortDesc = 2131230964; + + // aapt resource value: 0x7f0800d3 + public const int txtStatus = 2131230931; + + // aapt resource value: 0x7f0800d2 + public const int txtVersion = 2131230930; + + // aapt resource value: 0x7f080089 + public const int url_container = 2131230857; + + // aapt resource value: 0x7f08008a + public const int url_vdots = 2131230858; + + // aapt resource value: 0x7f08004d + public const int use_keyfile = 2131230797; + + // aapt resource value: 0x7f080085 + public const int username_container = 2131230853; + + // aapt resource value: 0x7f080086 + public const int username_vdots = 2131230854; + + // aapt resource value: 0x7f080057 + public const int value = 2131230807; + + // aapt resource value: 0x7f080009 + public const int versionB = 2131230729; + + // aapt resource value: 0x7f080008 + public const int versionX = 2131230728; // aapt resource value: 0x7f080007 - public const int white = 2131230727; + public const int version_title = 2131230727; + + // aapt resource value: 0x7f080003 + public const int white = 2131230723; static Id() { @@ -3374,2264 +3218,2210 @@ namespace keepass2android public partial class String { - // aapt resource value: 0x7f090137 - public const int AboutText = 2131296567; + // aapt resource value: 0x7f070122 + public const int AboutText = 2131165474; - // aapt resource value: 0x7f090132 - public const int AcceptAllServerCertificates_default = 2131296562; + // aapt resource value: 0x7f07011d + public const int AcceptAllServerCertificates_default = 2131165469; - // aapt resource value: 0x7f090126 - public const int AcceptAllServerCertificates_key = 2131296550; + // aapt resource value: 0x7f070111 + public const int AcceptAllServerCertificates_key = 2131165457; - // aapt resource value: 0x7f090237 - public const int AcceptAllServerCertificates_summary = 2131296823; + // aapt resource value: 0x7f070225 + public const int AcceptAllServerCertificates_summary = 2131165733; - // aapt resource value: 0x7f090236 - public const int AcceptAllServerCertificates_title = 2131296822; + // aapt resource value: 0x7f070224 + public const int AcceptAllServerCertificates_title = 2131165732; - // aapt resource value: 0x7f09021f - public const int AddUrlToEntryDialog_text = 2131296799; + // aapt resource value: 0x7f07020d + public const int AddUrlToEntryDialog_text = 2131165709; - // aapt resource value: 0x7f09021e - public const int AddUrlToEntryDialog_title = 2131296798; + // aapt resource value: 0x7f07020c + public const int AddUrlToEntryDialog_title = 2131165708; - // aapt resource value: 0x7f090258 - public const int AddingEntry = 2131296856; + // aapt resource value: 0x7f070246 + public const int AddingEntry = 2131165766; - // aapt resource value: 0x7f090259 - public const int AddingGroup = 2131296857; + // aapt resource value: 0x7f070247 + public const int AddingGroup = 2131165767; - // aapt resource value: 0x7f090015 - public const int ApplicationName = 2131296277; + // aapt resource value: 0x7f070000 + public const int ApplicationName = 2131165184; - // aapt resource value: 0x7f09024e - public const int AskDeletePermanentlyEntry = 2131296846; + // aapt resource value: 0x7f07023c + public const int AskDeletePermanentlyEntry = 2131165756; - // aapt resource value: 0x7f09024f - public const int AskDeletePermanentlyGroup = 2131296847; + // aapt resource value: 0x7f07023d + public const int AskDeletePermanentlyGroup = 2131165757; - // aapt resource value: 0x7f090250 - public const int AskDeletePermanently_title = 2131296848; + // aapt resource value: 0x7f07023e + public const int AskDeletePermanently_title = 2131165758; - // aapt resource value: 0x7f090253 - public const int AskDiscardChanges = 2131296851; + // aapt resource value: 0x7f070241 + public const int AskDiscardChanges = 2131165761; - // aapt resource value: 0x7f090254 - public const int AskDiscardChanges_title = 2131296852; + // aapt resource value: 0x7f070242 + public const int AskDiscardChanges_title = 2131165762; - // aapt resource value: 0x7f090248 - public const int AskOverwriteBinary = 2131296840; + // aapt resource value: 0x7f070236 + public const int AskOverwriteBinary = 2131165750; - // aapt resource value: 0x7f09024b - public const int AskOverwriteBinary_no = 2131296843; + // aapt resource value: 0x7f070239 + public const int AskOverwriteBinary_no = 2131165753; - // aapt resource value: 0x7f090249 - public const int AskOverwriteBinary_title = 2131296841; + // aapt resource value: 0x7f070237 + public const int AskOverwriteBinary_title = 2131165751; - // aapt resource value: 0x7f09024a - public const int AskOverwriteBinary_yes = 2131296842; + // aapt resource value: 0x7f070238 + public const int AskOverwriteBinary_yes = 2131165752; - // aapt resource value: 0x7f090252 - public const int AskReloadFile = 2131296850; + // aapt resource value: 0x7f070240 + public const int AskReloadFile = 2131165760; - // aapt resource value: 0x7f090251 - public const int AskReloadFile_title = 2131296849; + // aapt resource value: 0x7f07023f + public const int AskReloadFile_title = 2131165759; - // aapt resource value: 0x7f09024c - public const int AttachFailed = 2131296844; + // aapt resource value: 0x7f07023a + public const int AttachFailed = 2131165754; - // aapt resource value: 0x7f090111 - public const int BinaryDirectory_default = 2131296529; + // aapt resource value: 0x7f0700fc + public const int BinaryDirectory_default = 2131165436; - // aapt resource value: 0x7f090110 - public const int BinaryDirectory_key = 2131296528; + // aapt resource value: 0x7f0700fb + public const int BinaryDirectory_key = 2131165435; - // aapt resource value: 0x7f090217 - public const int BinaryDirectory_summary = 2131296791; + // aapt resource value: 0x7f070205 + public const int BinaryDirectory_summary = 2131165701; - // aapt resource value: 0x7f090216 - public const int BinaryDirectory_title = 2131296790; + // aapt resource value: 0x7f070204 + public const int BinaryDirectory_title = 2131165700; - // aapt resource value: 0x7f09027c - public const int CannotMoveGroupHere = 2131296892; + // aapt resource value: 0x7f07026a + public const int CannotMoveGroupHere = 2131165802; - // aapt resource value: 0x7f0902ce - public const int CertificateFailure = 2131296974; + // aapt resource value: 0x7f0702bc + public const int CertificateFailure = 2131165884; - // aapt resource value: 0x7f0902cd - public const int CertificateWarning = 2131296973; + // aapt resource value: 0x7f0702bb + public const int CertificateWarning = 2131165883; - // aapt resource value: 0x7f0902e2 - public const int ChangeLog = 2131296994; + // aapt resource value: 0x7f0702d0 + public const int ChangeLog = 2131165904; - // aapt resource value: 0x7f0902e1 - public const int ChangeLog_0_7 = 2131296993; + // aapt resource value: 0x7f0702cf + public const int ChangeLog_0_7 = 2131165903; - // aapt resource value: 0x7f0902df - public const int ChangeLog_0_8 = 2131296991; + // aapt resource value: 0x7f0702cd + public const int ChangeLog_0_8 = 2131165901; - // aapt resource value: 0x7f0902de - public const int ChangeLog_0_8_1 = 2131296990; + // aapt resource value: 0x7f0702cc + public const int ChangeLog_0_8_1 = 2131165900; - // aapt resource value: 0x7f0902dd - public const int ChangeLog_0_8_2 = 2131296989; + // aapt resource value: 0x7f0702cb + public const int ChangeLog_0_8_2 = 2131165899; - // aapt resource value: 0x7f0902dc - public const int ChangeLog_0_8_3 = 2131296988; + // aapt resource value: 0x7f0702ca + public const int ChangeLog_0_8_3 = 2131165898; - // aapt resource value: 0x7f0902db - public const int ChangeLog_0_8_4 = 2131296987; + // aapt resource value: 0x7f0702c9 + public const int ChangeLog_0_8_4 = 2131165897; - // aapt resource value: 0x7f0902da - public const int ChangeLog_0_8_5 = 2131296986; + // aapt resource value: 0x7f0702c8 + public const int ChangeLog_0_8_5 = 2131165896; - // aapt resource value: 0x7f0902d9 - public const int ChangeLog_0_8_6 = 2131296985; + // aapt resource value: 0x7f0702c7 + public const int ChangeLog_0_8_6 = 2131165895; - // aapt resource value: 0x7f0902d8 - public const int ChangeLog_0_9 = 2131296984; + // aapt resource value: 0x7f0702c6 + public const int ChangeLog_0_9 = 2131165894; - // aapt resource value: 0x7f0902d7 - public const int ChangeLog_0_9_1 = 2131296983; + // aapt resource value: 0x7f0702c5 + public const int ChangeLog_0_9_1 = 2131165893; - // aapt resource value: 0x7f0902d6 - public const int ChangeLog_0_9_2 = 2131296982; + // aapt resource value: 0x7f0702c4 + public const int ChangeLog_0_9_2 = 2131165892; - // aapt resource value: 0x7f0902d5 - public const int ChangeLog_0_9_3 = 2131296981; + // aapt resource value: 0x7f0702c3 + public const int ChangeLog_0_9_3 = 2131165891; - // aapt resource value: 0x7f0902d4 - public const int ChangeLog_0_9_3_r5 = 2131296980; + // aapt resource value: 0x7f0702c2 + public const int ChangeLog_0_9_3_r5 = 2131165890; - // aapt resource value: 0x7f0902d3 - public const int ChangeLog_0_9_4 = 2131296979; + // aapt resource value: 0x7f0702c1 + public const int ChangeLog_0_9_4 = 2131165889; - // aapt resource value: 0x7f0902e0 - public const int ChangeLog_keptDonate = 2131296992; + // aapt resource value: 0x7f0702ce + public const int ChangeLog_keptDonate = 2131165902; - // aapt resource value: 0x7f0902d1 - public const int ChangeLog_title = 2131296977; + // aapt resource value: 0x7f0702bf + public const int ChangeLog_title = 2131165887; - // aapt resource value: 0x7f090127 - public const int CheckForFileChangesOnSave_key = 2131296551; + // aapt resource value: 0x7f070112 + public const int CheckForFileChangesOnSave_key = 2131165458; - // aapt resource value: 0x7f09023b - public const int CheckForFileChangesOnSave_summary = 2131296827; + // aapt resource value: 0x7f070229 + public const int CheckForFileChangesOnSave_summary = 2131165737; - // aapt resource value: 0x7f09023a - public const int CheckForFileChangesOnSave_title = 2131296826; + // aapt resource value: 0x7f070228 + public const int CheckForFileChangesOnSave_title = 2131165736; - // aapt resource value: 0x7f09026d - public const int CheckingDatabaseForChanges = 2131296877; + // aapt resource value: 0x7f07025b + public const int CheckingDatabaseForChanges = 2131165787; - // aapt resource value: 0x7f090261 - public const int CheckingTargetFileForChanges = 2131296865; + // aapt resource value: 0x7f07024f + public const int CheckingTargetFileForChanges = 2131165775; - // aapt resource value: 0x7f09015a - public const int ClearClipboard = 2131296602; + // aapt resource value: 0x7f070146 + public const int ClearClipboard = 2131165510; - // aapt resource value: 0x7f090239 - public const int ClearOfflineCache_question = 2131296825; + // aapt resource value: 0x7f070227 + public const int ClearOfflineCache_question = 2131165735; - // aapt resource value: 0x7f090238 - public const int ClearOfflineCache_title = 2131296824; + // aapt resource value: 0x7f070226 + public const int ClearOfflineCache_title = 2131165734; - // aapt resource value: 0x7f09012c - public const int CopyToClipboardNotification_key = 2131296556; + // aapt resource value: 0x7f070117 + public const int CopyToClipboardNotification_key = 2131165463; - // aapt resource value: 0x7f09026f - public const int CouldNotLoadFromRemote = 2131296879; + // aapt resource value: 0x7f07025d + public const int CouldNotLoadFromRemote = 2131165789; - // aapt resource value: 0x7f09026e - public const int CouldNotSaveToRemote = 2131296878; + // aapt resource value: 0x7f07025c + public const int CouldNotSaveToRemote = 2131165788; - // aapt resource value: 0x7f0902b0 - public const int CouldntLoadChalAuxFile = 2131296944; + // aapt resource value: 0x7f07029e + public const int CouldntLoadChalAuxFile = 2131165854; - // aapt resource value: 0x7f0902b1 - public const int CouldntLoadChalAuxFile_Hint = 2131296945; + // aapt resource value: 0x7f07029f + public const int CouldntLoadChalAuxFile_Hint = 2131165855; - // aapt resource value: 0x7f0902a4 - public const int CouldntLoadOtpAuxFile = 2131296932; + // aapt resource value: 0x7f070292 + public const int CouldntLoadOtpAuxFile = 2131165842; - // aapt resource value: 0x7f0902a5 - public const int CouldntLoadOtpAuxFile_Hint = 2131296933; + // aapt resource value: 0x7f070293 + public const int CouldntLoadOtpAuxFile_Hint = 2131165843; - // aapt resource value: 0x7f0902ab - public const int CouldntParseOtpSecret = 2131296939; + // aapt resource value: 0x7f070299 + public const int CouldntParseOtpSecret = 2131165849; - // aapt resource value: 0x7f090138 - public const int CreditsText = 2131296568; + // aapt resource value: 0x7f070123 + public const int CreditsText = 2131165475; - // aapt resource value: 0x7f090139 - public const int CreditsTextSFTP = 2131296569; + // aapt resource value: 0x7f070124 + public const int CreditsTextSFTP = 2131165476; - // aapt resource value: 0x7f09025f - public const int DecodingDatabase = 2131296863; + // aapt resource value: 0x7f07024d + public const int DecodingDatabase = 2131165773; - // aapt resource value: 0x7f09025a - public const int DeletingEntry = 2131296858; + // aapt resource value: 0x7f070248 + public const int DeletingEntry = 2131165768; - // aapt resource value: 0x7f09025b - public const int DeletingGroup = 2131296859; + // aapt resource value: 0x7f070249 + public const int DeletingGroup = 2131165769; - // aapt resource value: 0x7f090268 - public const int DownloadingRemoteFile = 2131296872; + // aapt resource value: 0x7f070256 + public const int DownloadingRemoteFile = 2131165782; - // aapt resource value: 0x7f09027a - public const int ErrorOcurred = 2131296890; + // aapt resource value: 0x7f070268 + public const int ErrorOcurred = 2131165800; - // aapt resource value: 0x7f0902b2 - public const int ErrorUpdatingChalAuxFile = 2131296946; + // aapt resource value: 0x7f0702a0 + public const int ErrorUpdatingChalAuxFile = 2131165856; - // aapt resource value: 0x7f0902ad - public const int ErrorUpdatingOtpAuxFile = 2131296941; + // aapt resource value: 0x7f07029b + public const int ErrorUpdatingOtpAuxFile = 2131165851; - // aapt resource value: 0x7f090156 - public const int FileHandling_prefs = 2131296598; + // aapt resource value: 0x7f070142 + public const int FileHandling_prefs = 2131165506; - // aapt resource value: 0x7f090119 - public const int FileHandling_prefs_key = 2131296537; + // aapt resource value: 0x7f070104 + public const int FileHandling_prefs_key = 2131165444; - // aapt resource value: 0x7f09018d - public const int FileNotFound = 2131296653; + // aapt resource value: 0x7f07017a + public const int FileNotFound = 2131165562; - // aapt resource value: 0x7f09026b - public const int FilesInSync = 2131296875; + // aapt resource value: 0x7f070259 + public const int FilesInSync = 2131165785; - // aapt resource value: 0x7f09019e - public const int InvalidPassword = 2131296670; + // aapt resource value: 0x7f07018b + public const int InvalidPassword = 2131165579; - // aapt resource value: 0x7f090120 - public const int LastInfoVersionCode_key = 2131296544; + // aapt resource value: 0x7f07010b + public const int LastInfoVersionCode_key = 2131165451; - // aapt resource value: 0x7f090272 - public const int LoadedFromRemoteInSync = 2131296882; + // aapt resource value: 0x7f070260 + public const int LoadedFromRemoteInSync = 2131165792; - // aapt resource value: 0x7f090123 - public const int LockWhenNavigateBack_key = 2131296547; + // aapt resource value: 0x7f07010e + public const int LockWhenNavigateBack_key = 2131165454; - // aapt resource value: 0x7f090230 - public const int LockWhenNavigateBack_summary = 2131296816; + // aapt resource value: 0x7f07021e + public const int LockWhenNavigateBack_summary = 2131165726; - // aapt resource value: 0x7f09022f - public const int LockWhenNavigateBack_title = 2131296815; + // aapt resource value: 0x7f07021d + public const int LockWhenNavigateBack_title = 2131165725; - // aapt resource value: 0x7f090122 - public const int LockWhenScreenOff_key = 2131296546; + // aapt resource value: 0x7f07010d + public const int LockWhenScreenOff_key = 2131165453; - // aapt resource value: 0x7f09022e - public const int LockWhenScreenOff_summary = 2131296814; + // aapt resource value: 0x7f07021c + public const int LockWhenScreenOff_summary = 2131165724; - // aapt resource value: 0x7f09022d - public const int LockWhenScreenOff_title = 2131296813; + // aapt resource value: 0x7f07021b + public const int LockWhenScreenOff_title = 2131165723; - // aapt resource value: 0x7f090129 - public const int MarketURL = 2131296553; + // aapt resource value: 0x7f070114 + public const int MarketURL = 2131165460; - // aapt resource value: 0x7f0901a8 - public const int MaskedPassword = 2131296680; + // aapt resource value: 0x7f070196 + public const int MaskedPassword = 2131165590; - // aapt resource value: 0x7f090263 - public const int MessageSyncQuestion = 2131296867; + // aapt resource value: 0x7f070251 + public const int MessageSyncQuestion = 2131165777; - // aapt resource value: 0x7f090150 - public const int NavigationToGroupCompleted_message = 2131296592; + // aapt resource value: 0x7f07013b + public const int NavigationToGroupCompleted_message = 2131165499; - // aapt resource value: 0x7f090124 - public const int NoDonateOption_key = 2131296548; + // aapt resource value: 0x7f07010f + public const int NoDonateOption_key = 2131165455; - // aapt resource value: 0x7f090233 - public const int NoDonateOption_question = 2131296819; + // aapt resource value: 0x7f070221 + public const int NoDonateOption_question = 2131165729; - // aapt resource value: 0x7f090232 - public const int NoDonateOption_summary = 2131296818; + // aapt resource value: 0x7f070220 + public const int NoDonateOption_summary = 2131165728; - // aapt resource value: 0x7f090231 - public const int NoDonateOption_title = 2131296817; + // aapt resource value: 0x7f07021f + public const int NoDonateOption_title = 2131165727; - // aapt resource value: 0x7f090266 - public const int NoOverwrite = 2131296870; + // aapt resource value: 0x7f070254 + public const int NoOverwrite = 2131165780; - // aapt resource value: 0x7f090271 - public const int NotifyOpenFromLocalDueToConflict = 2131296881; + // aapt resource value: 0x7f07025f + public const int NotifyOpenFromLocalDueToConflict = 2131165791; - // aapt resource value: 0x7f09012e - public const int OpenKp2aKeyboardAutomatically_key = 2131296558; + // aapt resource value: 0x7f070119 + public const int OpenKp2aKeyboardAutomatically_key = 2131165465; - // aapt resource value: 0x7f090241 - public const int OpenKp2aKeyboardAutomatically_summary = 2131296833; + // aapt resource value: 0x7f07022f + public const int OpenKp2aKeyboardAutomatically_summary = 2131165743; - // aapt resource value: 0x7f090240 - public const int OpenKp2aKeyboardAutomatically_title = 2131296832; + // aapt resource value: 0x7f07022e + public const int OpenKp2aKeyboardAutomatically_title = 2131165742; - // aapt resource value: 0x7f0902ac - public const int OtpKeyError = 2131296940; + // aapt resource value: 0x7f07029a + public const int OtpKeyError = 2131165850; - // aapt resource value: 0x7f090260 - public const int ParsingDatabase = 2131296864; + // aapt resource value: 0x7f07024e + public const int ParsingDatabase = 2131165774; - // aapt resource value: 0x7f090134 - public const int PreloadDatabaseEnabled_key = 2131296564; + // aapt resource value: 0x7f07011f + public const int PreloadDatabaseEnabled_key = 2131165471; - // aapt resource value: 0x7f090247 - public const int PreloadDatabaseEnabled_summary = 2131296839; + // aapt resource value: 0x7f070235 + public const int PreloadDatabaseEnabled_summary = 2131165749; - // aapt resource value: 0x7f090246 - public const int PreloadDatabaseEnabled_title = 2131296838; + // aapt resource value: 0x7f070234 + public const int PreloadDatabaseEnabled_title = 2131165748; - // aapt resource value: 0x7f0902d2 - public const int PreviewWarning = 2131296978; + // aapt resource value: 0x7f0702c0 + public const int PreviewWarning = 2131165888; - // aapt resource value: 0x7f09011a - public const int QuickUnlockDefaultEnabled_key = 2131296538; + // aapt resource value: 0x7f070105 + public const int QuickUnlockDefaultEnabled_key = 2131165445; - // aapt resource value: 0x7f09020e - public const int QuickUnlockDefaultEnabled_summary = 2131296782; + // aapt resource value: 0x7f0701fc + public const int QuickUnlockDefaultEnabled_summary = 2131165692; - // aapt resource value: 0x7f09020d - public const int QuickUnlockDefaultEnabled_title = 2131296781; + // aapt resource value: 0x7f0701fb + public const int QuickUnlockDefaultEnabled_title = 2131165691; - // aapt resource value: 0x7f09011e - public const int QuickUnlockIconHidden16_key = 2131296542; + // aapt resource value: 0x7f070109 + public const int QuickUnlockIconHidden16_key = 2131165449; - // aapt resource value: 0x7f090212 - public const int QuickUnlockIconHidden16_summary = 2131296786; + // aapt resource value: 0x7f070200 + public const int QuickUnlockIconHidden16_summary = 2131165696; - // aapt resource value: 0x7f090211 - public const int QuickUnlockIconHidden16_title = 2131296785; + // aapt resource value: 0x7f0701ff + public const int QuickUnlockIconHidden16_title = 2131165695; - // aapt resource value: 0x7f09011d - public const int QuickUnlockIconHidden_key = 2131296541; + // aapt resource value: 0x7f070108 + public const int QuickUnlockIconHidden_key = 2131165448; - // aapt resource value: 0x7f090210 - public const int QuickUnlockIconHidden_summary = 2131296784; + // aapt resource value: 0x7f0701fe + public const int QuickUnlockIconHidden_summary = 2131165694; - // aapt resource value: 0x7f09020f - public const int QuickUnlockIconHidden_title = 2131296783; + // aapt resource value: 0x7f0701fd + public const int QuickUnlockIconHidden_title = 2131165693; - // aapt resource value: 0x7f09011c - public const int QuickUnlockLength_default = 2131296540; + // aapt resource value: 0x7f070107 + public const int QuickUnlockLength_default = 2131165447; - // aapt resource value: 0x7f09011b - public const int QuickUnlockLength_key = 2131296539; + // aapt resource value: 0x7f070106 + public const int QuickUnlockLength_key = 2131165446; - // aapt resource value: 0x7f090214 - public const int QuickUnlockLength_summary = 2131296788; + // aapt resource value: 0x7f070202 + public const int QuickUnlockLength_summary = 2131165698; - // aapt resource value: 0x7f090213 - public const int QuickUnlockLength_title = 2131296787; + // aapt resource value: 0x7f070201 + public const int QuickUnlockLength_title = 2131165697; - // aapt resource value: 0x7f09020b - public const int QuickUnlock_button = 2131296779; + // aapt resource value: 0x7f0701f9 + public const int QuickUnlock_button = 2131165689; - // aapt resource value: 0x7f090215 - public const int QuickUnlock_fail = 2131296789; + // aapt resource value: 0x7f070203 + public const int QuickUnlock_fail = 2131165699; - // aapt resource value: 0x7f09020a - public const int QuickUnlock_label = 2131296778; + // aapt resource value: 0x7f0701f8 + public const int QuickUnlock_label = 2131165688; - // aapt resource value: 0x7f09020c - public const int QuickUnlock_lockButton = 2131296780; + // aapt resource value: 0x7f0701fa + public const int QuickUnlock_lockButton = 2131165690; - // aapt resource value: 0x7f090155 - public const int QuickUnlock_prefs = 2131296597; + // aapt resource value: 0x7f070141 + public const int QuickUnlock_prefs = 2131165505; - // aapt resource value: 0x7f090118 - public const int QuickUnlock_prefs_key = 2131296536; + // aapt resource value: 0x7f070103 + public const int QuickUnlock_prefs_key = 2131165443; - // aapt resource value: 0x7f09024d - public const int RecycleBin = 2131296845; + // aapt resource value: 0x7f07023b + public const int RecycleBin = 2131165755; - // aapt resource value: 0x7f09010d - public const int RememberRecentFiles_key = 2131296525; + // aapt resource value: 0x7f0700f8 + public const int RememberRecentFiles_key = 2131165432; - // aapt resource value: 0x7f0901fe - public const int RememberRecentFiles_summary = 2131296766; + // aapt resource value: 0x7f0701ec + public const int RememberRecentFiles_summary = 2131165676; - // aapt resource value: 0x7f0901fd - public const int RememberRecentFiles_title = 2131296765; + // aapt resource value: 0x7f0701eb + public const int RememberRecentFiles_title = 2131165675; - // aapt resource value: 0x7f090274 - public const int RemoteDatabaseUnchanged = 2131296884; + // aapt resource value: 0x7f070262 + public const int RemoteDatabaseUnchanged = 2131165794; - // aapt resource value: 0x7f090276 - public const int ResolvedCacheConflictByUsingLocalOtpAux = 2131296886; + // aapt resource value: 0x7f070264 + public const int ResolvedCacheConflictByUsingLocalOtpAux = 2131165796; - // aapt resource value: 0x7f090275 - public const int ResolvedCacheConflictByUsingRemoteOtpAux = 2131296885; + // aapt resource value: 0x7f070263 + public const int ResolvedCacheConflictByUsingRemoteOtpAux = 2131165795; - // aapt resource value: 0x7f09026a - public const int RestoringRemoteFile = 2131296874; + // aapt resource value: 0x7f070258 + public const int RestoringRemoteFile = 2131165784; - // aapt resource value: 0x7f0902c7 - public const int SCOPE_CURRENT_ENTRY_explanation = 2131296967; + // aapt resource value: 0x7f0702b5 + public const int SCOPE_CURRENT_ENTRY_explanation = 2131165877; - // aapt resource value: 0x7f0902c6 - public const int SCOPE_CURRENT_ENTRY_title = 2131296966; + // aapt resource value: 0x7f0702b4 + public const int SCOPE_CURRENT_ENTRY_title = 2131165876; - // aapt resource value: 0x7f0902c5 - public const int SCOPE_DATABASE_ACTIONS_explanation = 2131296965; + // aapt resource value: 0x7f0702b3 + public const int SCOPE_DATABASE_ACTIONS_explanation = 2131165875; - // aapt resource value: 0x7f0902c4 - public const int SCOPE_DATABASE_ACTIONS_title = 2131296964; + // aapt resource value: 0x7f0702b2 + public const int SCOPE_DATABASE_ACTIONS_title = 2131165874; - // aapt resource value: 0x7f0902c9 - public const int SCOPE_QUERY_CREDENTIALS_FOR_OWN_PACKAGE_explanation = 2131296969; + // aapt resource value: 0x7f0702b7 + public const int SCOPE_QUERY_CREDENTIALS_FOR_OWN_PACKAGE_explanation = 2131165879; - // aapt resource value: 0x7f0902c8 - public const int SCOPE_QUERY_CREDENTIALS_FOR_OWN_PACKAGE_title = 2131296968; + // aapt resource value: 0x7f0702b6 + public const int SCOPE_QUERY_CREDENTIALS_FOR_OWN_PACKAGE_title = 2131165878; - // aapt resource value: 0x7f0902cb - public const int SCOPE_QUERY_CREDENTIALS_explanation = 2131296971; + // aapt resource value: 0x7f0702b9 + public const int SCOPE_QUERY_CREDENTIALS_explanation = 2131165881; - // aapt resource value: 0x7f0902ca - public const int SCOPE_QUERY_CREDENTIALS_title = 2131296970; + // aapt resource value: 0x7f0702b8 + public const int SCOPE_QUERY_CREDENTIALS_title = 2131165880; - // aapt resource value: 0x7f09021b - public const int SaveAttachmentDialog_open = 2131296795; + // aapt resource value: 0x7f070209 + public const int SaveAttachmentDialog_open = 2131165705; - // aapt resource value: 0x7f09021a - public const int SaveAttachmentDialog_save = 2131296794; + // aapt resource value: 0x7f070208 + public const int SaveAttachmentDialog_save = 2131165704; - // aapt resource value: 0x7f090219 - public const int SaveAttachmentDialog_text = 2131296793; + // aapt resource value: 0x7f070207 + public const int SaveAttachmentDialog_text = 2131165703; - // aapt resource value: 0x7f090218 - public const int SaveAttachmentDialog_title = 2131296792; + // aapt resource value: 0x7f070206 + public const int SaveAttachmentDialog_title = 2131165702; - // aapt resource value: 0x7f09021d - public const int SaveAttachment_Failed = 2131296797; + // aapt resource value: 0x7f07020b + public const int SaveAttachment_Failed = 2131165707; - // aapt resource value: 0x7f09021c - public const int SaveAttachment_doneMessage = 2131296796; + // aapt resource value: 0x7f07020a + public const int SaveAttachment_doneMessage = 2131165706; - // aapt resource value: 0x7f0902ae - public const int SavingOtpAuxFile = 2131296942; + // aapt resource value: 0x7f07029c + public const int SavingOtpAuxFile = 2131165852; - // aapt resource value: 0x7f09025c - public const int SettingPassword = 2131296860; + // aapt resource value: 0x7f07024a + public const int SettingPassword = 2131165770; - // aapt resource value: 0x7f09023d - public const int ShowCopyToClipboardNotification_summary = 2131296829; + // aapt resource value: 0x7f07022b + public const int ShowCopyToClipboardNotification_summary = 2131165739; - // aapt resource value: 0x7f09023c - public const int ShowCopyToClipboardNotification_title = 2131296828; + // aapt resource value: 0x7f07022a + public const int ShowCopyToClipboardNotification_title = 2131165738; - // aapt resource value: 0x7f090151 - public const int ShowGroupInEntry_title = 2131296593; + // aapt resource value: 0x7f07013c + public const int ShowGroupInEntry_title = 2131165500; - // aapt resource value: 0x7f09010b - public const int ShowGroupnameInSearchResult_key = 2131296523; + // aapt resource value: 0x7f0700f6 + public const int ShowGroupnameInSearchResult_key = 2131165430; - // aapt resource value: 0x7f09014f - public const int ShowGroupnameInSearchResult_resume = 2131296591; + // aapt resource value: 0x7f07013a + public const int ShowGroupnameInSearchResult_resume = 2131165498; - // aapt resource value: 0x7f09014e - public const int ShowGroupnameInSearchResult_title = 2131296590; + // aapt resource value: 0x7f070139 + public const int ShowGroupnameInSearchResult_title = 2131165497; - // aapt resource value: 0x7f09023f - public const int ShowKp2aKeyboardNotification_summary = 2131296831; + // aapt resource value: 0x7f07022d + public const int ShowKp2aKeyboardNotification_summary = 2131165741; - // aapt resource value: 0x7f09023e - public const int ShowKp2aKeyboardNotification_title = 2131296830; + // aapt resource value: 0x7f07022c + public const int ShowKp2aKeyboardNotification_title = 2131165740; - // aapt resource value: 0x7f090133 - public const int ShowUnlockedNotification_key = 2131296563; + // aapt resource value: 0x7f07011e + public const int ShowUnlockedNotification_key = 2131165470; - // aapt resource value: 0x7f090245 - public const int ShowUnlockedNotification_summary = 2131296837; + // aapt resource value: 0x7f070233 + public const int ShowUnlockedNotification_summary = 2131165747; - // aapt resource value: 0x7f090244 - public const int ShowUnlockedNotification_title = 2131296836; + // aapt resource value: 0x7f070232 + public const int ShowUnlockedNotification_title = 2131165746; - // aapt resource value: 0x7f09010c - public const int ShowUsernameInList_key = 2131296524; + // aapt resource value: 0x7f0700f7 + public const int ShowUsernameInList_key = 2131165431; - // aapt resource value: 0x7f0901fc - public const int ShowUsernameInList_summary = 2131296764; + // aapt resource value: 0x7f0701ea + public const int ShowUsernameInList_summary = 2131165674; - // aapt resource value: 0x7f0901fb - public const int ShowUsernameInList_title = 2131296763; + // aapt resource value: 0x7f0701e9 + public const int ShowUsernameInList_title = 2131165673; - // aapt resource value: 0x7f09012a - public const int SuggestionsURL = 2131296554; + // aapt resource value: 0x7f070115 + public const int SuggestionsURL = 2131165461; - // aapt resource value: 0x7f09026c - public const int SynchronizedDatabaseSuccessfully = 2131296876; + // aapt resource value: 0x7f07025a + public const int SynchronizedDatabaseSuccessfully = 2131165786; - // aapt resource value: 0x7f090267 - public const int SynchronizingCachedDatabase = 2131296871; + // aapt resource value: 0x7f070255 + public const int SynchronizingCachedDatabase = 2131165781; - // aapt resource value: 0x7f090264 - public const int SynchronizingDatabase = 2131296868; + // aapt resource value: 0x7f070252 + public const int SynchronizingDatabase = 2131165778; - // aapt resource value: 0x7f090277 - public const int SynchronizingOtpAuxFile = 2131296887; + // aapt resource value: 0x7f070265 + public const int SynchronizingOtpAuxFile = 2131165797; - // aapt resource value: 0x7f09010a - public const int TanExpiresOnUse_key = 2131296522; + // aapt resource value: 0x7f0700f5 + public const int TanExpiresOnUse_key = 2131165429; - // aapt resource value: 0x7f0901fa - public const int TanExpiresOnUse_summary = 2131296762; + // aapt resource value: 0x7f0701e8 + public const int TanExpiresOnUse_summary = 2131165672; - // aapt resource value: 0x7f0901f9 - public const int TanExpiresOnUse_title = 2131296761; + // aapt resource value: 0x7f0701e7 + public const int TanExpiresOnUse_title = 2131165671; - // aapt resource value: 0x7f090262 - public const int TitleSyncQuestion = 2131296866; + // aapt resource value: 0x7f070250 + public const int TitleSyncQuestion = 2131165776; - // aapt resource value: 0x7f09025e - public const int TransformingKey = 2131296862; + // aapt resource value: 0x7f07024c + public const int TransformingKey = 2131165772; - // aapt resource value: 0x7f09012b - public const int TranslationURL = 2131296555; + // aapt resource value: 0x7f070116 + public const int TranslationURL = 2131165462; - // aapt resource value: 0x7f090113 - public const int TrayTotp_SeedField_key = 2131296531; + // aapt resource value: 0x7f0700fe + public const int TrayTotp_SeedField_key = 2131165438; - // aapt resource value: 0x7f0902b4 - public const int TrayTotp_SeedField_summary = 2131296948; + // aapt resource value: 0x7f0702a2 + public const int TrayTotp_SeedField_summary = 2131165858; - // aapt resource value: 0x7f0902b3 - public const int TrayTotp_SeedField_title = 2131296947; + // aapt resource value: 0x7f0702a1 + public const int TrayTotp_SeedField_title = 2131165857; - // aapt resource value: 0x7f090112 - public const int TrayTotp_SettingsField_key = 2131296530; + // aapt resource value: 0x7f0700fd + public const int TrayTotp_SettingsField_key = 2131165437; - // aapt resource value: 0x7f0902b6 - public const int TrayTotp_SettingsField_summary = 2131296950; + // aapt resource value: 0x7f0702a4 + public const int TrayTotp_SettingsField_summary = 2131165860; - // aapt resource value: 0x7f0902b5 - public const int TrayTotp_SettingsField_title = 2131296949; + // aapt resource value: 0x7f0702a3 + public const int TrayTotp_SettingsField_title = 2131165859; - // aapt resource value: 0x7f0902b7 - public const int TrayTotp_prefs = 2131296951; + // aapt resource value: 0x7f0702a5 + public const int TrayTotp_prefs = 2131165861; - // aapt resource value: 0x7f090114 - public const int TrayTotp_prefs_key = 2131296532; + // aapt resource value: 0x7f0700ff + public const int TrayTotp_prefs_key = 2131165439; - // aapt resource value: 0x7f09025d - public const int UndoingChanges = 2131296861; + // aapt resource value: 0x7f07024b + public const int UndoingChanges = 2131165771; - // aapt resource value: 0x7f090273 - public const int UpdatedCachedFileOnLoad = 2131296883; + // aapt resource value: 0x7f070261 + public const int UpdatedCachedFileOnLoad = 2131165793; - // aapt resource value: 0x7f090270 - public const int UpdatedRemoteFileOnLoad = 2131296880; + // aapt resource value: 0x7f07025e + public const int UpdatedRemoteFileOnLoad = 2131165790; - // aapt resource value: 0x7f090269 - public const int UploadingFile = 2131296873; + // aapt resource value: 0x7f070257 + public const int UploadingFile = 2131165783; - // aapt resource value: 0x7f09011f - public const int UsageCount_key = 2131296543; + // aapt resource value: 0x7f07010a + public const int UsageCount_key = 2131165450; - // aapt resource value: 0x7f090121 - public const int UseFileTransactions_key = 2131296545; + // aapt resource value: 0x7f07010c + public const int UseFileTransactions_key = 2131165452; - // aapt resource value: 0x7f09022c - public const int UseFileTransactions_summary = 2131296812; + // aapt resource value: 0x7f07021a + public const int UseFileTransactions_summary = 2131165722; - // aapt resource value: 0x7f09022b - public const int UseFileTransactions_title = 2131296811; + // aapt resource value: 0x7f070219 + public const int UseFileTransactions_title = 2131165721; - // aapt resource value: 0x7f09012d - public const int UseKp2aKeyboard_key = 2131296557; + // aapt resource value: 0x7f070118 + public const int UseKp2aKeyboard_key = 2131165464; - // aapt resource value: 0x7f090125 - public const int UseOfflineCache_key = 2131296549; + // aapt resource value: 0x7f070110 + public const int UseOfflineCache_key = 2131165456; - // aapt resource value: 0x7f090235 - public const int UseOfflineCache_summary = 2131296821; + // aapt resource value: 0x7f070223 + public const int UseOfflineCache_summary = 2131165731; - // aapt resource value: 0x7f090234 - public const int UseOfflineCache_title = 2131296820; + // aapt resource value: 0x7f070222 + public const int UseOfflineCache_title = 2131165730; - // aapt resource value: 0x7f090265 - public const int YesSynchronize = 2131296869; + // aapt resource value: 0x7f070253 + public const int YesSynchronize = 2131165779; - // aapt resource value: 0x7f0902a3 - public const int YubiChallengeNotInstalled = 2131296931; + // aapt resource value: 0x7f070291 + public const int YubiChallengeNotInstalled = 2131165841; - // aapt resource value: 0x7f090135 - public const int about_feedback = 2131296565; + // aapt resource value: 0x7f070120 + public const int about_feedback = 2131165472; - // aapt resource value: 0x7f090136 - public const int about_homepage = 2131296566; + // aapt resource value: 0x7f070121 + public const int about_homepage = 2131165473; - // aapt resource value: 0x7f090128 - public const int about_prefs_key = 2131296552; + // aapt resource value: 0x7f070113 + public const int about_prefs_key = 2131165459; - // aapt resource value: 0x7f09013a - public const int accept = 2131296570; + // aapt resource value: 0x7f070125 + public const int accept = 2131165477; - // aapt resource value: 0x7f090225 - public const int add_binary = 2131296805; + // aapt resource value: 0x7f070213 + public const int add_binary = 2131165715; - // aapt resource value: 0x7f09013c - public const int add_entry = 2131296572; + // aapt resource value: 0x7f070127 + public const int add_entry = 2131165479; - // aapt resource value: 0x7f090226 - public const int add_extra_string = 2131296806; + // aapt resource value: 0x7f070214 + public const int add_extra_string = 2131165716; - // aapt resource value: 0x7f09013e - public const int add_group = 2131296574; + // aapt resource value: 0x7f070129 + public const int add_group = 2131165481; - // aapt resource value: 0x7f09013f - public const int add_group_title = 2131296575; + // aapt resource value: 0x7f07012a + public const int add_group_title = 2131165482; - // aapt resource value: 0x7f09013d - public const int add_url_entry = 2131296573; + // aapt resource value: 0x7f070128 + public const int add_url_entry = 2131165480; - // aapt resource value: 0x7f09005a - public const int added_word = 2131296346; + // aapt resource value: 0x7f070045 + public const int added_word = 2131165253; - // aapt resource value: 0x7f0900f0 - public const int afc_bullet = 2131296496; + // aapt resource value: 0x7f0700db + public const int afc_bullet = 2131165403; - // aapt resource value: 0x7f0900bf - public const int afc_cmd_advanced_selection_all = 2131296447; + // aapt resource value: 0x7f0700aa + public const int afc_cmd_advanced_selection_all = 2131165354; - // aapt resource value: 0x7f0900c0 - public const int afc_cmd_advanced_selection_invert = 2131296448; + // aapt resource value: 0x7f0700ab + public const int afc_cmd_advanced_selection_invert = 2131165355; - // aapt resource value: 0x7f0900c1 - public const int afc_cmd_advanced_selection_none = 2131296449; + // aapt resource value: 0x7f0700ac + public const int afc_cmd_advanced_selection_none = 2131165356; - // aapt resource value: 0x7f0900c2 - public const int afc_cmd_grid_view = 2131296450; + // aapt resource value: 0x7f0700ad + public const int afc_cmd_grid_view = 2131165357; - // aapt resource value: 0x7f0900c3 - public const int afc_cmd_home = 2131296451; + // aapt resource value: 0x7f0700ae + public const int afc_cmd_home = 2131165358; - // aapt resource value: 0x7f0900c4 - public const int afc_cmd_list_view = 2131296452; + // aapt resource value: 0x7f0700af + public const int afc_cmd_list_view = 2131165359; - // aapt resource value: 0x7f0900c5 - public const int afc_cmd_new_folder = 2131296453; + // aapt resource value: 0x7f0700b0 + public const int afc_cmd_new_folder = 2131165360; - // aapt resource value: 0x7f0900c6 - public const int afc_cmd_select_all_files = 2131296454; + // aapt resource value: 0x7f0700b1 + public const int afc_cmd_select_all_files = 2131165361; - // aapt resource value: 0x7f0900c7 - public const int afc_cmd_select_all_folders = 2131296455; + // aapt resource value: 0x7f0700b2 + public const int afc_cmd_select_all_folders = 2131165362; - // aapt resource value: 0x7f0900c8 - public const int afc_cmd_sort = 2131296456; + // aapt resource value: 0x7f0700b3 + public const int afc_cmd_sort = 2131165363; - // aapt resource value: 0x7f0900f1 - public const int afc_ellipsize = 2131296497; + // aapt resource value: 0x7f0700dc + public const int afc_ellipsize = 2131165404; - // aapt resource value: 0x7f0900c9 - public const int afc_file = 2131296457; + // aapt resource value: 0x7f0700b4 + public const int afc_file = 2131165364; - // aapt resource value: 0x7f0900ca - public const int afc_folder = 2131296458; + // aapt resource value: 0x7f0700b5 + public const int afc_folder = 2131165365; - // aapt resource value: 0x7f0900cb - public const int afc_hint_clear = 2131296459; + // aapt resource value: 0x7f0700b6 + public const int afc_hint_clear = 2131165366; - // aapt resource value: 0x7f0900cc - public const int afc_hint_folder_name = 2131296460; + // aapt resource value: 0x7f0700b7 + public const int afc_hint_folder_name = 2131165367; - // aapt resource value: 0x7f0900cd - public const int afc_hint_save_as_filename = 2131296461; + // aapt resource value: 0x7f0700b8 + public const int afc_hint_save_as_filename = 2131165368; - // aapt resource value: 0x7f0900ce - public const int afc_hint_search = 2131296462; + // aapt resource value: 0x7f0700b9 + public const int afc_hint_search = 2131165369; - // aapt resource value: 0x7f0900b6 - public const int afc_lib_name = 2131296438; + // aapt resource value: 0x7f0700a1 + public const int afc_lib_name = 2131165345; - // aapt resource value: 0x7f0900b7 - public const int afc_lib_version_name = 2131296439; + // aapt resource value: 0x7f0700a2 + public const int afc_lib_version_name = 2131165346; - // aapt resource value: 0x7f0900cf - public const int afc_msg_app_doesnot_have_permission_to_create_files = 2131296463; + // aapt resource value: 0x7f0700ba + public const int afc_msg_app_doesnot_have_permission_to_create_files = 2131165370; - // aapt resource value: 0x7f0900d0 - public const int afc_msg_app_doesnot_have_permission_to_delete_files = 2131296464; + // aapt resource value: 0x7f0700bb + public const int afc_msg_app_doesnot_have_permission_to_delete_files = 2131165371; - // aapt resource value: 0x7f0900d1 - public const int afc_msg_cancelled = 2131296465; + // aapt resource value: 0x7f0700bc + public const int afc_msg_cancelled = 2131165372; - // aapt resource value: 0x7f0900d2 - public const int afc_msg_cannot_connect_to_file_provider_service = 2131296466; + // aapt resource value: 0x7f0700bd + public const int afc_msg_cannot_connect_to_file_provider_service = 2131165373; - // aapt resource value: 0x7f0900d3 - public const int afc_msg_cannot_create_new_folder_here = 2131296467; + // aapt resource value: 0x7f0700be + public const int afc_msg_cannot_create_new_folder_here = 2131165374; - // aapt resource value: 0x7f0900d4 - public const int afc_msg_cannot_save_a_file_here = 2131296468; + // aapt resource value: 0x7f0700bf + public const int afc_msg_cannot_save_a_file_here = 2131165375; - // aapt resource value: 0x7f0900d5 - public const int afc_msg_done = 2131296469; + // aapt resource value: 0x7f0700c0 + public const int afc_msg_done = 2131165376; - // aapt resource value: 0x7f0900d6 - public const int afc_msg_empty = 2131296470; + // aapt resource value: 0x7f0700c1 + public const int afc_msg_empty = 2131165377; - // aapt resource value: 0x7f0900d7 - public const int afc_msg_failed_please_try_again = 2131296471; + // aapt resource value: 0x7f0700c2 + public const int afc_msg_failed_please_try_again = 2131165378; - // aapt resource value: 0x7f0900d8 - public const int afc_msg_loading = 2131296472; + // aapt resource value: 0x7f0700c3 + public const int afc_msg_loading = 2131165379; - // aapt resource value: 0x7f0900d9 - public const int afc_phone = 2131296473; + // aapt resource value: 0x7f0700c4 + public const int afc_phone = 2131165380; - // aapt resource value: 0x7f0900be - public const int afc_pkey_display_last_location = 2131296446; + // aapt resource value: 0x7f0700a9 + public const int afc_pkey_display_last_location = 2131165353; - // aapt resource value: 0x7f0900bd - public const int afc_pkey_display_remember_last_location = 2131296445; + // aapt resource value: 0x7f0700a8 + public const int afc_pkey_display_remember_last_location = 2131165352; - // aapt resource value: 0x7f0900bc - public const int afc_pkey_display_show_time_for_old_days = 2131296444; + // aapt resource value: 0x7f0700a7 + public const int afc_pkey_display_show_time_for_old_days = 2131165351; - // aapt resource value: 0x7f0900bb - public const int afc_pkey_display_show_time_for_old_days_this_year = 2131296443; + // aapt resource value: 0x7f0700a6 + public const int afc_pkey_display_show_time_for_old_days_this_year = 2131165350; - // aapt resource value: 0x7f0900ba - public const int afc_pkey_display_sort_ascending = 2131296442; + // aapt resource value: 0x7f0700a5 + public const int afc_pkey_display_sort_ascending = 2131165349; - // aapt resource value: 0x7f0900b9 - public const int afc_pkey_display_sort_type = 2131296441; + // aapt resource value: 0x7f0700a4 + public const int afc_pkey_display_sort_type = 2131165348; - // aapt resource value: 0x7f0900b8 - public const int afc_pkey_display_view_type = 2131296440; + // aapt resource value: 0x7f0700a3 + public const int afc_pkey_display_view_type = 2131165347; - // aapt resource value: 0x7f0900da - public const int afc_pmsg_cannot_access_dir = 2131296474; + // aapt resource value: 0x7f0700c5 + public const int afc_pmsg_cannot_access_dir = 2131165381; - // aapt resource value: 0x7f0900db - public const int afc_pmsg_cannot_create_folder = 2131296475; + // aapt resource value: 0x7f0700c6 + public const int afc_pmsg_cannot_create_folder = 2131165382; - // aapt resource value: 0x7f0900dc - public const int afc_pmsg_cannot_delete_file = 2131296476; + // aapt resource value: 0x7f0700c7 + public const int afc_pmsg_cannot_delete_file = 2131165383; - // aapt resource value: 0x7f0900dd - public const int afc_pmsg_confirm_delete_file = 2131296477; + // aapt resource value: 0x7f0700c8 + public const int afc_pmsg_confirm_delete_file = 2131165384; - // aapt resource value: 0x7f0900de - public const int afc_pmsg_confirm_replace_file = 2131296478; + // aapt resource value: 0x7f0700c9 + public const int afc_pmsg_confirm_replace_file = 2131165385; - // aapt resource value: 0x7f0900df - public const int afc_pmsg_deleting_file = 2131296479; + // aapt resource value: 0x7f0700ca + public const int afc_pmsg_deleting_file = 2131165386; - // aapt resource value: 0x7f0900e0 - public const int afc_pmsg_file_has_been_deleted = 2131296480; + // aapt resource value: 0x7f0700cb + public const int afc_pmsg_file_has_been_deleted = 2131165387; - // aapt resource value: 0x7f0900e1 - public const int afc_pmsg_filename_is_directory = 2131296481; + // aapt resource value: 0x7f0700cc + public const int afc_pmsg_filename_is_directory = 2131165388; - // aapt resource value: 0x7f0900e2 - public const int afc_pmsg_filename_is_invalid = 2131296482; + // aapt resource value: 0x7f0700cd + public const int afc_pmsg_filename_is_invalid = 2131165389; - // aapt resource value: 0x7f0900e3 - public const int afc_pmsg_max_file_count_allowed = 2131296483; + // aapt resource value: 0x7f0700ce + public const int afc_pmsg_max_file_count_allowed = 2131165390; - // aapt resource value: 0x7f0900e4 - public const int afc_pmsg_unknown_error = 2131296484; + // aapt resource value: 0x7f0700cf + public const int afc_pmsg_unknown_error = 2131165391; - // aapt resource value: 0x7f0900e5 - public const int afc_root = 2131296485; + // aapt resource value: 0x7f0700d0 + public const int afc_root = 2131165392; - // aapt resource value: 0x7f0900e6 - public const int afc_title_advanced_selection = 2131296486; + // aapt resource value: 0x7f0700d1 + public const int afc_title_advanced_selection = 2131165393; - // aapt resource value: 0x7f0900e7 - public const int afc_title_confirmation = 2131296487; + // aapt resource value: 0x7f0700d2 + public const int afc_title_confirmation = 2131165394; - // aapt resource value: 0x7f0900e8 - public const int afc_title_date = 2131296488; + // aapt resource value: 0x7f0700d3 + public const int afc_title_date = 2131165395; - // aapt resource value: 0x7f0900e9 - public const int afc_title_error = 2131296489; + // aapt resource value: 0x7f0700d4 + public const int afc_title_error = 2131165396; - // aapt resource value: 0x7f0900ea - public const int afc_title_info = 2131296490; + // aapt resource value: 0x7f0700d5 + public const int afc_title_info = 2131165397; - // aapt resource value: 0x7f0900eb - public const int afc_title_name = 2131296491; + // aapt resource value: 0x7f0700d6 + public const int afc_title_name = 2131165398; - // aapt resource value: 0x7f0900ec - public const int afc_title_save_as = 2131296492; + // aapt resource value: 0x7f0700d7 + public const int afc_title_save_as = 2131165399; - // aapt resource value: 0x7f0900ed - public const int afc_title_size = 2131296493; + // aapt resource value: 0x7f0700d8 + public const int afc_title_size = 2131165400; - // aapt resource value: 0x7f0900ee - public const int afc_title_sort_by = 2131296494; + // aapt resource value: 0x7f0700d9 + public const int afc_title_sort_by = 2131165401; - // aapt resource value: 0x7f0900ef - public const int afc_yesterday = 2131296495; + // aapt resource value: 0x7f0700da + public const int afc_yesterday = 2131165402; - // aapt resource value: 0x7f090141 - public const int algorithm = 2131296577; + // aapt resource value: 0x7f07012c + public const int algorithm = 2131165484; - // aapt resource value: 0x7f090142 - public const int algorithm_colon = 2131296578; + // aapt resource value: 0x7f07012d + public const int algorithm_colon = 2131165485; - // aapt resource value: 0x7f0900fc - public const int algorithm_key = 2131296508; + // aapt resource value: 0x7f0700e7 + public const int algorithm_key = 2131165415; - // aapt resource value: 0x7f090016 - public const int alternates_for_a = 2131296278; + // aapt resource value: 0x7f070001 + public const int alternates_for_a = 2131165185; - // aapt resource value: 0x7f09002d - public const int alternates_for_a_umlaut = 2131296301; + // aapt resource value: 0x7f070018 + public const int alternates_for_a_umlaut = 2131165208; - // aapt resource value: 0x7f090029 - public const int alternates_for_ae = 2131296297; + // aapt resource value: 0x7f070014 + public const int alternates_for_ae = 2131165204; - // aapt resource value: 0x7f09001d - public const int alternates_for_c = 2131296285; + // aapt resource value: 0x7f070008 + public const int alternates_for_c = 2131165192; - // aapt resource value: 0x7f09002b - public const int alternates_for_cyrillic_e = 2131296299; + // aapt resource value: 0x7f070016 + public const int alternates_for_cyrillic_e = 2131165206; - // aapt resource value: 0x7f09002c - public const int alternates_for_cyrillic_soft_sign = 2131296300; + // aapt resource value: 0x7f070017 + public const int alternates_for_cyrillic_soft_sign = 2131165207; - // aapt resource value: 0x7f090021 - public const int alternates_for_d = 2131296289; + // aapt resource value: 0x7f07000c + public const int alternates_for_d = 2131165196; - // aapt resource value: 0x7f090017 - public const int alternates_for_e = 2131296279; + // aapt resource value: 0x7f070002 + public const int alternates_for_e = 2131165186; - // aapt resource value: 0x7f090026 - public const int alternates_for_g = 2131296294; + // aapt resource value: 0x7f070011 + public const int alternates_for_g = 2131165201; - // aapt resource value: 0x7f090018 - public const int alternates_for_i = 2131296280; + // aapt resource value: 0x7f070003 + public const int alternates_for_i = 2131165187; - // aapt resource value: 0x7f090025 - public const int alternates_for_l = 2131296293; + // aapt resource value: 0x7f070010 + public const int alternates_for_l = 2131165200; - // aapt resource value: 0x7f09001c - public const int alternates_for_n = 2131296284; + // aapt resource value: 0x7f070007 + public const int alternates_for_n = 2131165191; - // aapt resource value: 0x7f090019 - public const int alternates_for_o = 2131296281; + // aapt resource value: 0x7f070004 + public const int alternates_for_o = 2131165188; - // aapt resource value: 0x7f09002e - public const int alternates_for_o_umlaut = 2131296302; + // aapt resource value: 0x7f070019 + public const int alternates_for_o_umlaut = 2131165209; - // aapt resource value: 0x7f09002a - public const int alternates_for_oe = 2131296298; + // aapt resource value: 0x7f070015 + public const int alternates_for_oe = 2131165205; - // aapt resource value: 0x7f090027 - public const int alternates_for_p = 2131296295; + // aapt resource value: 0x7f070012 + public const int alternates_for_p = 2131165202; - // aapt resource value: 0x7f09001f - public const int alternates_for_q = 2131296287; + // aapt resource value: 0x7f07000a + public const int alternates_for_q = 2131165194; - // aapt resource value: 0x7f090022 - public const int alternates_for_r = 2131296290; + // aapt resource value: 0x7f07000d + public const int alternates_for_r = 2131165197; - // aapt resource value: 0x7f09001b - public const int alternates_for_s = 2131296283; + // aapt resource value: 0x7f070006 + public const int alternates_for_s = 2131165190; - // aapt resource value: 0x7f090023 - public const int alternates_for_t = 2131296291; + // aapt resource value: 0x7f07000e + public const int alternates_for_t = 2131165198; - // aapt resource value: 0x7f09001a - public const int alternates_for_u = 2131296282; + // aapt resource value: 0x7f070005 + public const int alternates_for_u = 2131165189; - // aapt resource value: 0x7f090028 - public const int alternates_for_v = 2131296296; + // aapt resource value: 0x7f070013 + public const int alternates_for_v = 2131165203; - // aapt resource value: 0x7f090020 - public const int alternates_for_w = 2131296288; + // aapt resource value: 0x7f07000b + public const int alternates_for_w = 2131165195; - // aapt resource value: 0x7f09001e - public const int alternates_for_y = 2131296286; + // aapt resource value: 0x7f070009 + public const int alternates_for_y = 2131165193; - // aapt resource value: 0x7f090024 - public const int alternates_for_z = 2131296292; + // aapt resource value: 0x7f07000f + public const int alternates_for_z = 2131165199; - // aapt resource value: 0x7f0900fd - public const int app_key = 2131296509; + // aapt resource value: 0x7f0700e8 + public const int app_key = 2131165416; - // aapt resource value: 0x7f090143 - public const int app_name = 2131296579; + // aapt resource value: 0x7f07012e + public const int app_name = 2131165486; - // aapt resource value: 0x7f090145 - public const int app_name_nonet = 2131296581; + // aapt resource value: 0x7f070130 + public const int app_name_nonet = 2131165488; - // aapt resource value: 0x7f090147 - public const int app_timeout = 2131296583; + // aapt resource value: 0x7f070132 + public const int app_timeout = 2131165490; - // aapt resource value: 0x7f0900fe - public const int app_timeout_key = 2131296510; + // aapt resource value: 0x7f0700e9 + public const int app_timeout_key = 2131165417; - // aapt resource value: 0x7f090148 - public const int app_timeout_summary = 2131296584; + // aapt resource value: 0x7f070133 + public const int app_timeout_summary = 2131165491; - // aapt resource value: 0x7f09014c - public const int application = 2131296588; + // aapt resource value: 0x7f070137 + public const int application = 2131165495; - // aapt resource value: 0x7f09014d - public const int application_settings = 2131296589; + // aapt resource value: 0x7f070138 + public const int application_settings = 2131165496; - // aapt resource value: 0x7f090010 - public const int auth_client_needs_enabling_title = 2131296272; + // aapt resource value: 0x7f0701df + public const int author = 2131165663; - // aapt resource value: 0x7f090011 - public const int auth_client_needs_installation_title = 2131296273; + // aapt resource value: 0x7f070032 + public const int auto_cap = 2131165234; - // aapt resource value: 0x7f090012 - public const int auth_client_needs_update_title = 2131296274; + // aapt resource value: 0x7f070033 + public const int auto_cap_summary = 2131165235; - // aapt resource value: 0x7f090013 - public const int auth_client_play_services_err_notification_msg = 2131296275; + // aapt resource value: 0x7f07003a + public const int auto_complete = 2131165242; - // aapt resource value: 0x7f090014 - public const int auth_client_requested_by_msg = 2131296276; + // aapt resource value: 0x7f07002f + public const int auto_complete_dialog_title = 2131165231; - // aapt resource value: 0x7f09000f - public const int auth_client_using_bad_version_title = 2131296271; + // aapt resource value: 0x7f07003b + public const int auto_complete_summary = 2131165243; - // aapt resource value: 0x7f0901f1 - public const int author = 2131296753; + // aapt resource value: 0x7f07002a + public const int auto_correction = 2131165226; - // aapt resource value: 0x7f090047 - public const int auto_cap = 2131296327; + // aapt resource value: 0x7f07002b + public const int auto_correction_summary = 2131165227; - // aapt resource value: 0x7f090048 - public const int auto_cap_summary = 2131296328; + // aapt resource value: 0x7f070034 + public const int auto_punctuate = 2131165236; - // aapt resource value: 0x7f09004f - public const int auto_complete = 2131296335; + // aapt resource value: 0x7f070035 + public const int auto_punctuate_summary = 2131165237; - // aapt resource value: 0x7f090044 - public const int auto_complete_dialog_title = 2131296324; + // aapt resource value: 0x7f070072 + public const int auto_submit = 2131165298; - // aapt resource value: 0x7f090050 - public const int auto_complete_summary = 2131296336; + // aapt resource value: 0x7f070073 + public const int auto_submit_summary = 2131165299; - // aapt resource value: 0x7f09003f - public const int auto_correction = 2131296319; + // aapt resource value: 0x7f07014b + public const int available_through_keyboard = 2131165515; - // aapt resource value: 0x7f090040 - public const int auto_correction_summary = 2131296320; + // aapt resource value: 0x7f07029d + public const int bad_resp = 2131165853; - // aapt resource value: 0x7f090049 - public const int auto_punctuate = 2131296329; + // aapt resource value: 0x7f070040 + public const int bigram_suggestion = 2131165248; - // aapt resource value: 0x7f09004a - public const int auto_punctuate_summary = 2131296330; + // aapt resource value: 0x7f070041 + public const int bigram_suggestion_summary = 2131165249; - // aapt resource value: 0x7f090087 - public const int auto_submit = 2131296391; + // aapt resource value: 0x7f070145 + public const int brackets = 2131165509; - // aapt resource value: 0x7f090088 - public const int auto_submit_summary = 2131296392; + // aapt resource value: 0x7f0702d3 + public const int browser_intall_text = 2131165907; - // aapt resource value: 0x7f09015f - public const int available_through_keyboard = 2131296607; + // aapt resource value: 0x7f0702d4 + public const int building_search_idx = 2131165908; - // aapt resource value: 0x7f0902af - public const int bad_resp = 2131296943; + // aapt resource value: 0x7f070285 + public const int button_change_location = 2131165829; - // aapt resource value: 0x7f090055 - public const int bigram_suggestion = 2131296341; + // aapt resource value: 0x7f07006c + public const int cancel = 2131165292; - // aapt resource value: 0x7f090056 - public const int bigram_suggestion_summary = 2131296342; + // aapt resource value: 0x7f0701f0 + public const int caseSensitive = 2131165680; - // aapt resource value: 0x7f090159 - public const int brackets = 2131296601; + // aapt resource value: 0x7f070090 + public const int change_entry = 2131165328; - // aapt resource value: 0x7f0902e5 - public const int browser_intall_text = 2131296997; + // aapt resource value: 0x7f070147 + public const int clipboard_timeout = 2131165511; - // aapt resource value: 0x7f0902e6 - public const int building_search_idx = 2131296998; + // aapt resource value: 0x7f07011a + public const int clipboard_timeout_default = 2131165466; - // aapt resource value: 0x7f090297 - public const int button_change_location = 2131296919; + // aapt resource value: 0x7f0700eb + public const int clipboard_timeout_key = 2131165419; - // aapt resource value: 0x7f090081 - public const int cancel = 2131296385; + // aapt resource value: 0x7f070148 + public const int clipboard_timeout_summary = 2131165512; - // aapt resource value: 0x7f090202 - public const int caseSensitive = 2131296770; + // aapt resource value: 0x7f070075 + public const int close_the_keyboard = 2131165301; - // aapt resource value: 0x7f0900a5 - public const int change_entry = 2131296421; + // aapt resource value: 0x7f0701e5 + public const int contributors = 2131165669; - // aapt resource value: 0x7f09015b - public const int clipboard_timeout = 2131296603; + // aapt resource value: 0x7f07014a + public const int copy_password = 2131165514; - // aapt resource value: 0x7f09012f - public const int clipboard_timeout_default = 2131296559; + // aapt resource value: 0x7f070149 + public const int copy_username = 2131165513; - // aapt resource value: 0x7f090100 - public const int clipboard_timeout_key = 2131296512; + // aapt resource value: 0x7f0701bc + public const int create_database = 2131165628; - // aapt resource value: 0x7f09015c - public const int clipboard_timeout_summary = 2131296604; + // aapt resource value: 0x7f07014e + public const int creating_db_key = 2131165518; - // aapt resource value: 0x7f09008a - public const int close_the_keyboard = 2131296394; + // aapt resource value: 0x7f070218 + public const int credentials_dialog_title = 2131165720; - // aapt resource value: 0x7f090006 - public const int common_google_play_services_enable_button = 2131296262; + // aapt resource value: 0x7f0701e2 + public const int credit_android_filechooser = 2131165666; - // aapt resource value: 0x7f090005 - public const int common_google_play_services_enable_text = 2131296261; + // aapt resource value: 0x7f0701e3 + public const int credit_keyboard = 2131165667; - // aapt resource value: 0x7f090004 - public const int common_google_play_services_enable_title = 2131296260; + // aapt resource value: 0x7f0701e1 + public const int credit_plugin1 = 2131165665; - // aapt resource value: 0x7f090003 - public const int common_google_play_services_install_button = 2131296259; + // aapt resource value: 0x7f07014f + public const int current_group = 2131165519; - // aapt resource value: 0x7f090001 - public const int common_google_play_services_install_text_phone = 2131296257; + // aapt resource value: 0x7f070150 + public const int current_group_root = 2131165520; - // aapt resource value: 0x7f090002 - public const int common_google_play_services_install_text_tablet = 2131296258; + // aapt resource value: 0x7f070151 + public const int database = 2131165521; - // aapt resource value: 0x7f090000 - public const int common_google_play_services_install_title = 2131296256; + // aapt resource value: 0x7f070266 + public const int database_file = 2131165798; - // aapt resource value: 0x7f090009 - public const int common_google_play_services_unknown_issue = 2131296265; + // aapt resource value: 0x7f070216 + public const int database_loaded_quickunlock_enabled = 2131165718; - // aapt resource value: 0x7f09000b - public const int common_google_play_services_unsupported_text = 2131296267; + // aapt resource value: 0x7f070217 + public const int database_loaded_unlocked = 2131165719; - // aapt resource value: 0x7f09000a - public const int common_google_play_services_unsupported_title = 2131296266; + // aapt resource value: 0x7f070282 + public const int database_location = 2131165826; - // aapt resource value: 0x7f09000c - public const int common_google_play_services_update_button = 2131296268; + // aapt resource value: 0x7f0701c6 + public const int database_name = 2131165638; - // aapt resource value: 0x7f090008 - public const int common_google_play_services_update_text = 2131296264; + // aapt resource value: 0x7f0700fa + public const int database_name_key = 2131165434; - // aapt resource value: 0x7f090007 - public const int common_google_play_services_update_title = 2131296263; + // aapt resource value: 0x7f0700ec + public const int db_key = 2131165420; - // aapt resource value: 0x7f09000d - public const int common_signin_button_text = 2131296269; + // aapt resource value: 0x7f0702d5 + public const int decrypting_db = 2131165909; - // aapt resource value: 0x7f09000e - public const int common_signin_button_text_long = 2131296270; + // aapt resource value: 0x7f0702d6 + public const int decrypting_entry = 2131165910; - // aapt resource value: 0x7f0901f7 - public const int contributors = 2131296759; + // aapt resource value: 0x7f0702d7 + public const int default_checkbox = 2131165911; - // aapt resource value: 0x7f09015e - public const int copy_password = 2131296606; + // aapt resource value: 0x7f0700de + public const int default_file_path = 2131165406; - // aapt resource value: 0x7f09015d - public const int copy_username = 2131296605; + // aapt resource value: 0x7f0701c7 + public const int default_username = 2131165639; - // aapt resource value: 0x7f0901ce - public const int create_database = 2131296718; + // aapt resource value: 0x7f0700f9 + public const int default_username_key = 2131165433; - // aapt resource value: 0x7f090162 - public const int creating_db_key = 2131296610; + // aapt resource value: 0x7f070215 + public const int delete_extra_string = 2131165717; - // aapt resource value: 0x7f09022a - public const int credentials_dialog_title = 2131296810; + // aapt resource value: 0x7f070126 + public const int deny = 2131165478; - // aapt resource value: 0x7f0901f4 - public const int credit_android_filechooser = 2131296756; + // aapt resource value: 0x7f07011c + public const int design_default = 2131165468; - // aapt resource value: 0x7f0901f5 - public const int credit_keyboard = 2131296757; + // aapt resource value: 0x7f0700f3 + public const int design_key = 2131165427; - // aapt resource value: 0x7f0901f3 - public const int credit_plugin1 = 2131296755; + // aapt resource value: 0x7f0702d1 + public const int design_title = 2131165905; - // aapt resource value: 0x7f090163 - public const int current_group = 2131296611; + // aapt resource value: 0x7f070152 + public const int digits = 2131165522; - // aapt resource value: 0x7f090164 - public const int current_group_root = 2131296612; + // aapt resource value: 0x7f070153 + public const int disclaimer_formal = 2131165523; - // aapt resource value: 0x7f090165 - public const int database = 2131296613; + // aapt resource value: 0x7f07013f + public const int display_prefs = 2131165503; - // aapt resource value: 0x7f090278 - public const int database_file = 2131296888; + // aapt resource value: 0x7f070102 + public const int display_prefs_key = 2131165442; - // aapt resource value: 0x7f090228 - public const int database_loaded_quickunlock_enabled = 2131296808; + // aapt resource value: 0x7f07026c + public const int donate_bday_question = 2131165804; - // aapt resource value: 0x7f090229 - public const int database_loaded_unlocked = 2131296809; + // aapt resource value: 0x7f07026d + public const int donate_missedbday_question = 2131165805; - // aapt resource value: 0x7f090294 - public const int database_location = 2131296916; + // aapt resource value: 0x7f07026b + public const int donate_question = 2131165803; - // aapt resource value: 0x7f0901d8 - public const int database_name = 2131296728; + // aapt resource value: 0x7f0700df + public const int donate_url = 2131165407; - // aapt resource value: 0x7f09010f - public const int database_name_key = 2131296527; + // aapt resource value: 0x7f07012b + public const int edit_group_title = 2131165483; - // aapt resource value: 0x7f090101 - public const int db_key = 2131296513; + // aapt resource value: 0x7f070154 + public const int ellipsis = 2131165524; - // aapt resource value: 0x7f0902e7 - public const int decrypting_db = 2131296999; + // aapt resource value: 0x7f0701f7 + public const int enable_quickunlock = 2131165687; - // aapt resource value: 0x7f0902e8 - public const int decrypting_entry = 2131297000; + // aapt resource value: 0x7f07008e + public const int english_ime_debug_settings = 2131165326; - // aapt resource value: 0x7f0902e9 - public const int default_checkbox = 2131297001; + // aapt resource value: 0x7f070022 + public const int english_ime_input_options = 2131165218; - // aapt resource value: 0x7f0900f3 - public const int default_file_path = 2131296499; + // aapt resource value: 0x7f070020 + public const int english_ime_name = 2131165216; - // aapt resource value: 0x7f0901d9 - public const int default_username = 2131296729; + // aapt resource value: 0x7f070021 + public const int english_ime_settings = 2131165217; - // aapt resource value: 0x7f09010e - public const int default_username_key = 2131296526; + // aapt resource value: 0x7f070155 + public const int enter_filename = 2131165525; - // aapt resource value: 0x7f090227 - public const int delete_extra_string = 2131296807; + // aapt resource value: 0x7f0701f6 + public const int enter_filename_details_create_import = 2131165686; - // aapt resource value: 0x7f09013b - public const int deny = 2131296571; + // aapt resource value: 0x7f0701f5 + public const int enter_filename_details_url = 2131165685; - // aapt resource value: 0x7f090131 - public const int design_default = 2131296561; + // aapt resource value: 0x7f070273 + public const int enter_sftp_login_title = 2131165811; - // aapt resource value: 0x7f090108 - public const int design_key = 2131296520; + // aapt resource value: 0x7f070156 + public const int entry_accessed = 2131165526; - // aapt resource value: 0x7f0902e3 - public const int design_title = 2131296995; + // aapt resource value: 0x7f0702d8 + public const int entry_and_or = 2131165912; - // aapt resource value: 0x7f090166 - public const int digits = 2131296614; + // aapt resource value: 0x7f070168 + public const int entry_binaries = 2131165544; - // aapt resource value: 0x7f090167 - public const int disclaimer_formal = 2131296615; + // aapt resource value: 0x7f070157 + public const int entry_cancel = 2131165527; - // aapt resource value: 0x7f090153 - public const int display_prefs = 2131296595; + // aapt resource value: 0x7f070158 + public const int entry_comment = 2131165528; - // aapt resource value: 0x7f090117 - public const int display_prefs_key = 2131296535; + // aapt resource value: 0x7f07015b + public const int entry_confpassword = 2131165531; - // aapt resource value: 0x7f09027e - public const int donate_bday_question = 2131296894; + // aapt resource value: 0x7f07015c + public const int entry_created = 2131165532; - // aapt resource value: 0x7f09027f - public const int donate_missedbday_question = 2131296895; + // aapt resource value: 0x7f07015d + public const int entry_expires = 2131165533; - // aapt resource value: 0x7f09027d - public const int donate_question = 2131296893; + // aapt resource value: 0x7f070167 + public const int entry_extra_strings = 2131165543; - // aapt resource value: 0x7f0900f4 - public const int donate_url = 2131296500; + // aapt resource value: 0x7f07015e + public const int entry_group_name = 2131165534; - // aapt resource value: 0x7f090140 - public const int edit_group_title = 2131296576; + // aapt resource value: 0x7f07015f + public const int entry_keyfile = 2131165535; - // aapt resource value: 0x7f090168 - public const int ellipsis = 2131296616; + // aapt resource value: 0x7f070161 + public const int entry_modified = 2131165537; - // aapt resource value: 0x7f090209 - public const int enable_quickunlock = 2131296777; + // aapt resource value: 0x7f07015a + public const int entry_override_url = 2131165530; - // aapt resource value: 0x7f0900a3 - public const int english_ime_debug_settings = 2131296419; + // aapt resource value: 0x7f070162 + public const int entry_password = 2131165538; - // aapt resource value: 0x7f090037 - public const int english_ime_input_options = 2131296311; + // aapt resource value: 0x7f070163 + public const int entry_save = 2131165539; - // aapt resource value: 0x7f090035 - public const int english_ime_name = 2131296309; + // aapt resource value: 0x7f070159 + public const int entry_tags = 2131165529; - // aapt resource value: 0x7f090036 - public const int english_ime_settings = 2131296310; + // aapt resource value: 0x7f070164 + public const int entry_title = 2131165540; - // aapt resource value: 0x7f090169 - public const int enter_filename = 2131296617; + // aapt resource value: 0x7f070165 + public const int entry_url = 2131165541; - // aapt resource value: 0x7f090208 - public const int enter_filename_details_create_import = 2131296776; + // aapt resource value: 0x7f070166 + public const int entry_user_name = 2131165542; - // aapt resource value: 0x7f090207 - public const int enter_filename_details_url = 2131296775; + // aapt resource value: 0x7f07028d + public const int error_adding_keyfile = 2131165837; - // aapt resource value: 0x7f090285 - public const int enter_sftp_login_title = 2131296901; + // aapt resource value: 0x7f0702d9 + public const int error_arc4 = 2131165913; - // aapt resource value: 0x7f09016a - public const int entry_accessed = 2131296618; + // aapt resource value: 0x7f070169 + public const int error_can_not_handle_uri = 2131165545; - // aapt resource value: 0x7f0902ea - public const int entry_and_or = 2131297002; + // aapt resource value: 0x7f07016a + public const int error_could_not_create_group = 2131165546; - // aapt resource value: 0x7f09017b - public const int entry_binaries = 2131296635; + // aapt resource value: 0x7f07016b + public const int error_could_not_create_parent = 2131165547; - // aapt resource value: 0x7f09016b - public const int entry_cancel = 2131296619; + // aapt resource value: 0x7f07016c + public const int error_database_exists = 2131165548; - // aapt resource value: 0x7f09016c - public const int entry_comment = 2131296620; + // aapt resource value: 0x7f0702d2 + public const int error_database_settings = 2131165906; - // aapt resource value: 0x7f09016f - public const int entry_confpassword = 2131296623; + // aapt resource value: 0x7f07016d + public const int error_database_settinoverrgs = 2131165549; - // aapt resource value: 0x7f090170 - public const int entry_created = 2131296624; + // aapt resource value: 0x7f07016e + public const int error_failed_to_launch_link = 2131165550; - // aapt resource value: 0x7f090171 - public const int entry_expires = 2131296625; + // aapt resource value: 0x7f070170 + public const int error_file_not_create = 2131165552; - // aapt resource value: 0x7f09017a - public const int entry_extra_strings = 2131296634; + // aapt resource value: 0x7f07016f + public const int error_filename_required = 2131165551; - // aapt resource value: 0x7f090172 - public const int entry_group_name = 2131296626; + // aapt resource value: 0x7f070171 + public const int error_invalid_db = 2131165553; - // aapt resource value: 0x7f090173 - public const int entry_keyfile = 2131296627; + // aapt resource value: 0x7f07020e + public const int error_invalid_expiry_date = 2131165710; - // aapt resource value: 0x7f090174 - public const int entry_modified = 2131296628; + // aapt resource value: 0x7f070172 + public const int error_invalid_path = 2131165554; - // aapt resource value: 0x7f09016e - public const int entry_override_url = 2131296622; + // aapt resource value: 0x7f070173 + public const int error_no_name = 2131165555; - // aapt resource value: 0x7f090175 - public const int entry_password = 2131296629; + // aapt resource value: 0x7f070174 + public const int error_nopass = 2131165556; - // aapt resource value: 0x7f090176 - public const int entry_save = 2131296630; + // aapt resource value: 0x7f0702da + public const int error_out_of_memory = 2131165914; - // aapt resource value: 0x7f09016d - public const int entry_tags = 2131296621; + // aapt resource value: 0x7f070175 + public const int error_pass_gen_type = 2131165557; - // aapt resource value: 0x7f090177 - public const int entry_title = 2131296631; + // aapt resource value: 0x7f070176 + public const int error_pass_match = 2131165558; - // aapt resource value: 0x7f090178 - public const int entry_url = 2131296632; + // aapt resource value: 0x7f070177 + public const int error_rounds_not_number = 2131165559; - // aapt resource value: 0x7f090179 - public const int entry_user_name = 2131296633; + // aapt resource value: 0x7f0702db + public const int error_rounds_too_large = 2131165915; - // aapt resource value: 0x7f09029f - public const int error_adding_keyfile = 2131296927; + // aapt resource value: 0x7f07020f + public const int error_string_key = 2131165711; - // aapt resource value: 0x7f0902eb - public const int error_arc4 = 2131297003; + // aapt resource value: 0x7f070178 + public const int error_title_required = 2131165560; - // aapt resource value: 0x7f09017c - public const int error_can_not_handle_uri = 2131296636; + // aapt resource value: 0x7f070179 + public const int error_wrong_length = 2131165561; - // aapt resource value: 0x7f09017d - public const int error_could_not_create_group = 2131296637; + // aapt resource value: 0x7f0701ee + public const int excludeExpiredEntries = 2131165678; - // aapt resource value: 0x7f09017e - public const int error_could_not_create_parent = 2131296638; + // aapt resource value: 0x7f0701ca + public const int export_database_successful = 2131165642; - // aapt resource value: 0x7f09017f - public const int error_database_exists = 2131296639; + // aapt resource value: 0x7f0702bd + public const int export_fileformats_title = 2131165885; - // aapt resource value: 0x7f0902e4 - public const int error_database_settings = 2131296996; + // aapt resource value: 0x7f070144 + public const int export_prefs = 2131165508; - // aapt resource value: 0x7f090180 - public const int error_database_settinoverrgs = 2131296640; + // aapt resource value: 0x7f0701c9 + public const int exporting_database = 2131165641; - // aapt resource value: 0x7f090181 - public const int error_failed_to_launch_link = 2131296641; + // aapt resource value: 0x7f070210 + public const int field_name = 2131165712; - // aapt resource value: 0x7f090183 - public const int error_file_not_create = 2131296643; + // aapt resource value: 0x7f070211 + public const int field_value = 2131165713; - // aapt resource value: 0x7f090182 - public const int error_filename_required = 2131296642; + // aapt resource value: 0x7f07017b + public const int file_browser = 2131165563; - // aapt resource value: 0x7f090184 - public const int error_invalid_db = 2131296644; + // aapt resource value: 0x7f070281 + public const int filestorage_setup_title = 2131165825; - // aapt resource value: 0x7f090220 - public const int error_invalid_expiry_date = 2131296800; + // aapt resource value: 0x7f07027d + public const int filestoragehelp_dropboxKP2A = 2131165821; - // aapt resource value: 0x7f090185 - public const int error_invalid_path = 2131296645; + // aapt resource value: 0x7f070276 + public const int filestoragename_androidget = 2131165814; - // aapt resource value: 0x7f090186 - public const int error_no_name = 2131296646; + // aapt resource value: 0x7f070277 + public const int filestoragename_androidsend = 2131165815; - // aapt resource value: 0x7f090187 - public const int error_nopass = 2131296647; + // aapt resource value: 0x7f07027b + public const int filestoragename_dropbox = 2131165819; - // aapt resource value: 0x7f0902ec - public const int error_out_of_memory = 2131297004; + // aapt resource value: 0x7f07027c + public const int filestoragename_dropboxKP2A = 2131165820; - // aapt resource value: 0x7f090188 - public const int error_pass_gen_type = 2131296648; + // aapt resource value: 0x7f070275 + public const int filestoragename_file = 2131165813; - // aapt resource value: 0x7f090189 - public const int error_pass_match = 2131296649; + // aapt resource value: 0x7f070278 + public const int filestoragename_ftp = 2131165816; - // aapt resource value: 0x7f09018a - public const int error_rounds_not_number = 2131296650; + // aapt resource value: 0x7f07027e + public const int filestoragename_gdrive = 2131165822; - // aapt resource value: 0x7f0902ed - public const int error_rounds_too_large = 2131297005; + // aapt resource value: 0x7f070279 + public const int filestoragename_http = 2131165817; - // aapt resource value: 0x7f090221 - public const int error_string_key = 2131296801; + // aapt resource value: 0x7f07027a + public const int filestoragename_https = 2131165818; - // aapt resource value: 0x7f09018b - public const int error_title_required = 2131296651; + // aapt resource value: 0x7f070280 + public const int filestoragename_sftp = 2131165824; - // aapt resource value: 0x7f09018c - public const int error_wrong_length = 2131296652; + // aapt resource value: 0x7f07027f + public const int filestoragename_skydrive = 2131165823; - // aapt resource value: 0x7f090200 - public const int excludeExpiredEntries = 2131296768; + // aapt resource value: 0x7f0700e2 + public const int further_author_names = 2131165410; - // aapt resource value: 0x7f0901dc - public const int export_database_successful = 2131296732; + // aapt resource value: 0x7f0701e0 + public const int further_authors = 2131165664; - // aapt resource value: 0x7f0902cf - public const int export_fileformats_title = 2131296975; + // aapt resource value: 0x7f07017c + public const int generate_password = 2131165564; - // aapt resource value: 0x7f090158 - public const int export_prefs = 2131296600; + // aapt resource value: 0x7f0702ba + public const int get_regular_version = 2131165882; - // aapt resource value: 0x7f0901db - public const int exporting_database = 2131296731; + // aapt resource value: 0x7f07017d + public const int group = 2131165565; - // aapt resource value: 0x7f090222 - public const int field_name = 2131296802; + // aapt resource value: 0x7f070081 + public const int has_dictionary = 2131165313; - // aapt resource value: 0x7f090223 - public const int field_value = 2131296803; + // aapt resource value: 0x7f070283 + public const int help_database_location = 2131165827; - // aapt resource value: 0x7f09018e - public const int file_browser = 2131296654; + // aapt resource value: 0x7f07028a + public const int help_key_file = 2131165834; - // aapt resource value: 0x7f090293 - public const int filestorage_setup_title = 2131296915; + // aapt resource value: 0x7f070287 + public const int help_master_password = 2131165831; - // aapt resource value: 0x7f09028f - public const int filestoragehelp_dropboxKP2A = 2131296911; + // aapt resource value: 0x7f070080 + public const int hint_add_to_dictionary = 2131165312; - // aapt resource value: 0x7f090288 - public const int filestoragename_androidget = 2131296904; + // aapt resource value: 0x7f07017e + public const int hint_comment = 2131165566; - // aapt resource value: 0x7f090289 - public const int filestoragename_androidsend = 2131296905; + // aapt resource value: 0x7f07017f + public const int hint_conf_pass = 2131165567; - // aapt resource value: 0x7f09028d - public const int filestoragename_dropbox = 2131296909; + // aapt resource value: 0x7f070284 + public const int hint_database_location = 2131165828; - // aapt resource value: 0x7f09028e - public const int filestoragename_dropboxKP2A = 2131296910; + // aapt resource value: 0x7f070180 + public const int hint_generated_password = 2131165568; - // aapt resource value: 0x7f090287 - public const int filestoragename_file = 2131296903; + // aapt resource value: 0x7f070181 + public const int hint_group_name = 2131165569; - // aapt resource value: 0x7f09028a - public const int filestoragename_ftp = 2131296906; + // aapt resource value: 0x7f07028b + public const int hint_key_file = 2131165835; - // aapt resource value: 0x7f090290 - public const int filestoragename_gdrive = 2131296912; + // aapt resource value: 0x7f070182 + public const int hint_keyfile = 2131165570; - // aapt resource value: 0x7f09028b - public const int filestoragename_http = 2131296907; + // aapt resource value: 0x7f070183 + public const int hint_length = 2131165571; - // aapt resource value: 0x7f09028c - public const int filestoragename_https = 2131296908; + // aapt resource value: 0x7f070185 + public const int hint_login_pass = 2131165573; - // aapt resource value: 0x7f090292 - public const int filestoragename_sftp = 2131296914; + // aapt resource value: 0x7f070288 + public const int hint_master_password = 2131165832; - // aapt resource value: 0x7f090291 - public const int filestoragename_skydrive = 2131296913; + // aapt resource value: 0x7f070188 + public const int hint_override_url = 2131165576; - // aapt resource value: 0x7f0900f7 - public const int further_author_names = 2131296503; + // aapt resource value: 0x7f070184 + public const int hint_pass = 2131165572; - // aapt resource value: 0x7f0901f2 - public const int further_authors = 2131296754; + // aapt resource value: 0x7f070270 + public const int hint_sftp_host = 2131165808; - // aapt resource value: 0x7f09018f - public const int generate_password = 2131296655; + // aapt resource value: 0x7f070271 + public const int hint_sftp_port = 2131165809; - // aapt resource value: 0x7f0902cc - public const int get_regular_version = 2131296972; + // aapt resource value: 0x7f070189 + public const int hint_tags = 2131165577; - // aapt resource value: 0x7f090190 - public const int group = 2131296656; + // aapt resource value: 0x7f070186 + public const int hint_title = 2131165574; - // aapt resource value: 0x7f090096 - public const int has_dictionary = 2131296406; + // aapt resource value: 0x7f070187 + public const int hint_url = 2131165575; - // aapt resource value: 0x7f090295 - public const int help_database_location = 2131296917; + // aapt resource value: 0x7f07018a + public const int hint_username = 2131165578; - // aapt resource value: 0x7f09029c - public const int help_key_file = 2131296924; + // aapt resource value: 0x7f070026 + public const int hit_correction = 2131165222; - // aapt resource value: 0x7f090299 - public const int help_master_password = 2131296921; + // aapt resource value: 0x7f070028 + public const int hit_correction_land = 2131165224; - // aapt resource value: 0x7f090095 - public const int hint_add_to_dictionary = 2131296405; + // aapt resource value: 0x7f070029 + public const int hit_correction_land_summary = 2131165225; - // aapt resource value: 0x7f090191 - public const int hint_comment = 2131296657; + // aapt resource value: 0x7f070027 + public const int hit_correction_summary = 2131165223; - // aapt resource value: 0x7f090192 - public const int hint_conf_pass = 2131296658; + // aapt resource value: 0x7f0700e0 + public const int homepage = 2131165408; - // aapt resource value: 0x7f090296 - public const int hint_database_location = 2131296918; + // aapt resource value: 0x7f0700e1 + public const int homepage_short = 2131165409; - // aapt resource value: 0x7f090193 - public const int hint_generated_password = 2131296659; + // aapt resource value: 0x7f0700dd + public const int icon_info = 2131165405; - // aapt resource value: 0x7f090194 - public const int hint_group_name = 2131296660; + // aapt resource value: 0x7f07028e + public const int init_otp = 2131165838; - // aapt resource value: 0x7f09029d - public const int hint_key_file = 2131296925; + // aapt resource value: 0x7f070272 + public const int initial_directory = 2131165810; - // aapt resource value: 0x7f090195 - public const int hint_keyfile = 2131296661; + // aapt resource value: 0x7f0701d6 + public const int insert_element_here = 2131165654; - // aapt resource value: 0x7f090196 - public const int hint_length = 2131296662; + // aapt resource value: 0x7f0702dc + public const int install_from_market = 2131165916; - // aapt resource value: 0x7f090198 - public const int hint_login_pass = 2131296664; + // aapt resource value: 0x7f0702dd + public const int install_from_website = 2131165917; - // aapt resource value: 0x7f09029a - public const int hint_master_password = 2131296922; + // aapt resource value: 0x7f07018c + public const int invalid_algorithm = 2131165580; - // aapt resource value: 0x7f09019b - public const int hint_override_url = 2131296667; + // aapt resource value: 0x7f07018d + public const int invalid_db_sig = 2131165581; - // aapt resource value: 0x7f090197 - public const int hint_pass = 2131296663; + // aapt resource value: 0x7f0700e3 + public const int issues = 2131165411; - // aapt resource value: 0x7f090282 - public const int hint_sftp_host = 2131296898; + // aapt resource value: 0x7f070289 + public const int key_file = 2131165833; - // aapt resource value: 0x7f090283 - public const int hint_sftp_port = 2131296899; + // aapt resource value: 0x7f070086 + public const int keyboard_layout = 2131165318; - // aapt resource value: 0x7f09019c - public const int hint_tags = 2131296668; + // aapt resource value: 0x7f070143 + public const int keyboard_prefs = 2131165507; - // aapt resource value: 0x7f090199 - public const int hint_title = 2131296665; + // aapt resource value: 0x7f070077 + public const int keyboard_settings = 2131165303; - // aapt resource value: 0x7f09019a - public const int hint_url = 2131296666; + // aapt resource value: 0x7f07018e + public const int keyfile_does_not_exist = 2131165582; - // aapt resource value: 0x7f09019d - public const int hint_username = 2131296669; + // aapt resource value: 0x7f070160 + public const int keyfile_heading = 2131165536; - // aapt resource value: 0x7f09003b - public const int hit_correction = 2131296315; + // aapt resource value: 0x7f070190 + public const int keyfile_is_empty = 2131165584; - // aapt resource value: 0x7f09003d - public const int hit_correction_land = 2131296317; + // aapt resource value: 0x7f0700ef + public const int keyfile_key = 2131165423; - // aapt resource value: 0x7f09003e - public const int hit_correction_land_summary = 2131296318; + // aapt resource value: 0x7f070134 + public const int kill_app_label = 2131165492; - // aapt resource value: 0x7f09003c - public const int hit_correction_summary = 2131296316; + // aapt resource value: 0x7f0702be + public const int killed_by_os = 2131165886; - // aapt resource value: 0x7f0900f5 - public const int homepage = 2131296501; + // aapt resource value: 0x7f070096 + public const int kp2a_auto_fill = 2131165334; - // aapt resource value: 0x7f0900f6 - public const int homepage_short = 2131296502; + // aapt resource value: 0x7f070097 + public const int kp2a_auto_fill_summary = 2131165335; - // aapt resource value: 0x7f0900f2 - public const int icon_info = 2131296498; + // aapt resource value: 0x7f0701ed + public const int kp2a_findUrl = 2131165677; - // aapt resource value: 0x7f0902a0 - public const int init_otp = 2131296928; + // aapt resource value: 0x7f07009c + public const int kp2a_lock_on_sendgodone = 2131165340; - // aapt resource value: 0x7f090284 - public const int initial_directory = 2131296900; + // aapt resource value: 0x7f07009d + public const int kp2a_lock_on_sendgodone_summary = 2131165341; - // aapt resource value: 0x7f0901e8 - public const int insert_element_here = 2131296744; + // aapt resource value: 0x7f070094 + public const int kp2a_password = 2131165332; - // aapt resource value: 0x7f0902ee - public const int install_from_market = 2131297006; + // aapt resource value: 0x7f070095 + public const int kp2a_prefs = 2131165333; - // aapt resource value: 0x7f0902ef - public const int install_from_website = 2131297007; + // aapt resource value: 0x7f070098 + public const int kp2a_remember_auto_fill = 2131165336; - // aapt resource value: 0x7f09019f - public const int invalid_algorithm = 2131296671; + // aapt resource value: 0x7f070099 + public const int kp2a_remember_auto_fill_summary = 2131165337; - // aapt resource value: 0x7f0901a0 - public const int invalid_db_sig = 2131296672; + // aapt resource value: 0x7f07009a + public const int kp2a_simple_keyboard = 2131165338; - // aapt resource value: 0x7f0900f8 - public const int issues = 2131296504; + // aapt resource value: 0x7f07009b + public const int kp2a_simple_keyboard_summary = 2131165339; - // aapt resource value: 0x7f09029b - public const int key_file = 2131296923; + // aapt resource value: 0x7f07009e + public const int kp2a_switch_on_sendgodone = 2131165342; - // aapt resource value: 0x7f09009b - public const int keyboard_layout = 2131296411; + // aapt resource value: 0x7f07009f + public const int kp2a_switch_on_sendgodone_summary = 2131165343; - // aapt resource value: 0x7f090157 - public const int keyboard_prefs = 2131296599; + // aapt resource value: 0x7f070230 + public const int kp2a_switch_rooted = 2131165744; - // aapt resource value: 0x7f09008c - public const int keyboard_settings = 2131296396; + // aapt resource value: 0x7f070231 + public const int kp2a_switch_rooted_summary = 2131165745; - // aapt resource value: 0x7f0901a1 - public const int keyfile_does_not_exist = 2131296673; + // aapt resource value: 0x7f070093 + public const int kp2a_user = 2131165331; - // aapt resource value: 0x7f0901a2 - public const int keyfile_is_empty = 2131296674; + // aapt resource value: 0x7f070058 + public const int label_alpha_key = 2131165272; - // aapt resource value: 0x7f090104 - public const int keyfile_key = 2131296516; + // aapt resource value: 0x7f070059 + public const int label_alt_key = 2131165273; - // aapt resource value: 0x7f090149 - public const int kill_app_label = 2131296585; + // aapt resource value: 0x7f070054 + public const int label_done_key = 2131165268; - // aapt resource value: 0x7f0902d0 - public const int killed_by_os = 2131296976; + // aapt resource value: 0x7f070052 + public const int label_go_key = 2131165266; - // aapt resource value: 0x7f0900ab - public const int kp2a_auto_fill = 2131296427; + // aapt resource value: 0x7f070053 + public const int label_next_key = 2131165267; - // aapt resource value: 0x7f0900ac - public const int kp2a_auto_fill_summary = 2131296428; + // aapt resource value: 0x7f070057 + public const int label_phone_key = 2131165271; - // aapt resource value: 0x7f0901ff - public const int kp2a_findUrl = 2131296767; + // aapt resource value: 0x7f070055 + public const int label_send_key = 2131165269; - // aapt resource value: 0x7f0900b1 - public const int kp2a_lock_on_sendgodone = 2131296433; + // aapt resource value: 0x7f070056 + public const int label_symbol_key = 2131165270; - // aapt resource value: 0x7f0900b2 - public const int kp2a_lock_on_sendgodone_summary = 2131296434; + // aapt resource value: 0x7f07007f + public const int language_selection_summary = 2131165311; - // aapt resource value: 0x7f0900a9 - public const int kp2a_password = 2131296425; + // aapt resource value: 0x7f07007e + public const int language_selection_title = 2131165310; - // aapt resource value: 0x7f0900aa - public const int kp2a_prefs = 2131296426; + // aapt resource value: 0x7f070087 + public const int layout_basic = 2131165319; - // aapt resource value: 0x7f0900ad - public const int kp2a_remember_auto_fill = 2131296429; + // aapt resource value: 0x7f07008b + public const int layout_gingerbread = 2131165323; - // aapt resource value: 0x7f0900ae - public const int kp2a_remember_auto_fill_summary = 2131296430; + // aapt resource value: 0x7f070088 + public const int layout_high_contrast = 2131165320; - // aapt resource value: 0x7f0900af - public const int kp2a_simple_keyboard = 2131296431; + // aapt resource value: 0x7f070089 + public const int layout_stone_bold = 2131165321; - // aapt resource value: 0x7f0900b0 - public const int kp2a_simple_keyboard_summary = 2131296432; + // aapt resource value: 0x7f07008a + public const int layout_stone_normal = 2131165322; - // aapt resource value: 0x7f0900b3 - public const int kp2a_switch_on_sendgodone = 2131296435; + // aapt resource value: 0x7f070191 + public const int length = 2131165585; - // aapt resource value: 0x7f0900b4 - public const int kp2a_switch_on_sendgodone_summary = 2131296436; + // aapt resource value: 0x7f0700a0 + public const int library_name = 2131165344; - // aapt resource value: 0x7f090242 - public const int kp2a_switch_rooted = 2131296834; + // aapt resource value: 0x7f07011b + public const int list_size_default = 2131165467; - // aapt resource value: 0x7f090243 - public const int kp2a_switch_rooted_summary = 2131296835; + // aapt resource value: 0x7f0700f2 + public const int list_size_key = 2131165426; - // aapt resource value: 0x7f0900a8 - public const int kp2a_user = 2131296424; + // aapt resource value: 0x7f070193 + public const int list_size_summary = 2131165587; - // aapt resource value: 0x7f09006d - public const int label_alpha_key = 2131296365; + // aapt resource value: 0x7f070192 + public const int list_size_title = 2131165586; - // aapt resource value: 0x7f09006e - public const int label_alt_key = 2131296366; + // aapt resource value: 0x7f0702a6 + public const int loading = 2131165862; - // aapt resource value: 0x7f090069 - public const int label_done_key = 2131296361; + // aapt resource value: 0x7f070194 + public const int loading_database = 2131165588; - // aapt resource value: 0x7f090067 - public const int label_go_key = 2131296359; + // aapt resource value: 0x7f070195 + public const int lowercase = 2131165589; - // aapt resource value: 0x7f090068 - public const int label_next_key = 2131296360; + // aapt resource value: 0x7f0700f0 + public const int maskpass_key = 2131165424; - // aapt resource value: 0x7f09006c - public const int label_phone_key = 2131296364; + // aapt resource value: 0x7f070198 + public const int maskpass_summary = 2131165592; - // aapt resource value: 0x7f09006a - public const int label_send_key = 2131296362; + // aapt resource value: 0x7f070197 + public const int maskpass_title = 2131165591; - // aapt resource value: 0x7f09006b - public const int label_symbol_key = 2131296363; + // aapt resource value: 0x7f0701ba + public const int master_key_type = 2131165626; - // aapt resource value: 0x7f090094 - public const int language_selection_summary = 2131296404; + // aapt resource value: 0x7f070286 + public const int master_password = 2131165830; - // aapt resource value: 0x7f090093 - public const int language_selection_title = 2131296403; + // aapt resource value: 0x7f0700ee + public const int master_pwd_key = 2131165422; - // aapt resource value: 0x7f09009c - public const int layout_basic = 2131296412; + // aapt resource value: 0x7f070199 + public const int menu_about = 2131165593; - // aapt resource value: 0x7f0900a0 - public const int layout_gingerbread = 2131296416; + // aapt resource value: 0x7f07019e + public const int menu_app_settings = 2131165598; - // aapt resource value: 0x7f09009d - public const int layout_high_contrast = 2131296413; + // aapt resource value: 0x7f0701ad + public const int menu_change_db = 2131165613; - // aapt resource value: 0x7f09009e - public const int layout_stone_bold = 2131296414; + // aapt resource value: 0x7f07019a + public const int menu_change_key = 2131165594; - // aapt resource value: 0x7f09009f - public const int layout_stone_normal = 2131296415; + // aapt resource value: 0x7f07019b + public const int menu_copy_pass = 2131165595; - // aapt resource value: 0x7f0901a3 - public const int length = 2131296675; + // aapt resource value: 0x7f07019c + public const int menu_copy_user = 2131165596; - // aapt resource value: 0x7f0900b5 - public const int library_name = 2131296437; + // aapt resource value: 0x7f07019d + public const int menu_create = 2131165597; - // aapt resource value: 0x7f090130 - public const int list_size_default = 2131296560; + // aapt resource value: 0x7f07019f + public const int menu_db_settings = 2131165599; - // aapt resource value: 0x7f090107 - public const int list_size_key = 2131296519; + // aapt resource value: 0x7f0701a0 + public const int menu_delete = 2131165600; - // aapt resource value: 0x7f0901a5 - public const int list_size_summary = 2131296677; + // aapt resource value: 0x7f0701a4 + public const int menu_donate = 2131165604; - // aapt resource value: 0x7f0901a4 - public const int list_size_title = 2131296676; + // aapt resource value: 0x7f0701a5 + public const int menu_edit = 2131165605; - // aapt resource value: 0x7f0902b8 - public const int loading = 2131296952; + // aapt resource value: 0x7f0701a6 + public const int menu_hide_password = 2131165606; - // aapt resource value: 0x7f0901a6 - public const int loading_database = 2131296678; + // aapt resource value: 0x7f0702de + public const int menu_homepage = 2131165918; - // aapt resource value: 0x7f0901a7 - public const int lowercase = 2131296679; + // aapt resource value: 0x7f0701a7 + public const int menu_lock = 2131165607; - // aapt resource value: 0x7f090105 - public const int maskpass_key = 2131296517; + // aapt resource value: 0x7f0701a1 + public const int menu_move = 2131165601; - // aapt resource value: 0x7f0901aa - public const int maskpass_summary = 2131296682; + // aapt resource value: 0x7f0701a2 + public const int menu_move_light = 2131165602; - // aapt resource value: 0x7f0901a9 - public const int maskpass_title = 2131296681; + // aapt resource value: 0x7f0701a3 + public const int menu_navigate = 2131165603; - // aapt resource value: 0x7f0901cc - public const int master_key_type = 2131296716; + // aapt resource value: 0x7f0701a8 + public const int menu_open = 2131165608; - // aapt resource value: 0x7f090298 - public const int master_password = 2131296920; + // aapt resource value: 0x7f0701a9 + public const int menu_rename = 2131165609; - // aapt resource value: 0x7f090103 - public const int master_pwd_key = 2131296515; + // aapt resource value: 0x7f0701aa + public const int menu_search = 2131165610; - // aapt resource value: 0x7f0901ab - public const int menu_about = 2131296683; + // aapt resource value: 0x7f0701ab + public const int menu_search_advanced = 2131165611; - // aapt resource value: 0x7f0901b0 - public const int menu_app_settings = 2131296688; + // aapt resource value: 0x7f0701ac + public const int menu_url = 2131165612; - // aapt resource value: 0x7f0901bf - public const int menu_change_db = 2131296703; + // aapt resource value: 0x7f0701ae + public const int minus = 2131165614; - // aapt resource value: 0x7f0901ac - public const int menu_change_key = 2131296684; + // aapt resource value: 0x7f0701af + public const int never = 2131165615; - // aapt resource value: 0x7f0901ad - public const int menu_copy_pass = 2131296685; + // aapt resource value: 0x7f0701b1 + public const int no = 2131165617; - // aapt resource value: 0x7f0901ae - public const int menu_copy_user = 2131296686; + // aapt resource value: 0x7f07018f + public const int no_keyfile_selected = 2131165583; - // aapt resource value: 0x7f0901af - public const int menu_create = 2131296687; + // aapt resource value: 0x7f0701b2 + public const int no_keys = 2131165618; - // aapt resource value: 0x7f0901b1 - public const int menu_db_settings = 2131296689; + // aapt resource value: 0x7f0701b3 + public const int no_results = 2131165619; - // aapt resource value: 0x7f0901b2 - public const int menu_delete = 2131296690; + // aapt resource value: 0x7f07026f + public const int no_thanks = 2131165807; - // aapt resource value: 0x7f0901b6 - public const int menu_donate = 2131296694; + // aapt resource value: 0x7f0701b4 + public const int no_url_handler = 2131165620; - // aapt resource value: 0x7f0901b7 - public const int menu_edit = 2131296695; + // aapt resource value: 0x7f07014c + public const int not_possible_im_picker = 2131165516; - // aapt resource value: 0x7f0901b8 - public const int menu_hide_password = 2131296696; + // aapt resource value: 0x7f0700e4 + public const int oi_filemanager_market = 2131165412; - // aapt resource value: 0x7f0902f0 - public const int menu_homepage = 2131297008; + // aapt resource value: 0x7f0700e5 + public const int oi_filemanager_web = 2131165413; - // aapt resource value: 0x7f0901b9 - public const int menu_lock = 2131296697; + // aapt resource value: 0x7f07006d + public const int ok = 2131165293; - // aapt resource value: 0x7f0901b3 - public const int menu_move = 2131296691; + // aapt resource value: 0x7f07026e + public const int ok_donate = 2131165806; - // aapt resource value: 0x7f0901b4 - public const int menu_move_light = 2131296692; + // aapt resource value: 0x7f0700f1 + public const int omitbackup_key = 2131165425; - // aapt resource value: 0x7f0901b5 - public const int menu_navigate = 2131296693; + // aapt resource value: 0x7f0701b7 + public const int omitbackup_summary = 2131165623; - // aapt resource value: 0x7f0901ba - public const int menu_open = 2131296698; + // aapt resource value: 0x7f0701b6 + public const int omitbackup_title = 2131165622; - // aapt resource value: 0x7f0901bb - public const int menu_rename = 2131296699; + // aapt resource value: 0x7f070091 + public const int open_entry = 2131165329; - // aapt resource value: 0x7f0901bc - public const int menu_search = 2131296700; + // aapt resource value: 0x7f070092 + public const int open_entry_for_app = 2131165330; - // aapt resource value: 0x7f0901bd - public const int menu_search_advanced = 2131296701; + // aapt resource value: 0x7f0701b5 + public const int open_recent = 2131165621; - // aapt resource value: 0x7f0901be - public const int menu_url = 2131296702; + // aapt resource value: 0x7f070074 + public const int open_the_keyboard = 2131165300; - // aapt resource value: 0x7f0901c0 - public const int minus = 2131296704; + // aapt resource value: 0x7f070267 + public const int otp_aux_file = 2131165799; - // aapt resource value: 0x7f0901c1 - public const int never = 2131296705; + // aapt resource value: 0x7f070296 + public const int otp_discarded_because_db_open = 2131165846; - // aapt resource value: 0x7f0901c3 - public const int no = 2131296707; + // aapt resource value: 0x7f070294 + public const int otp_discarded_because_no_db = 2131165844; - // aapt resource value: 0x7f0901c4 - public const int no_keys = 2131296708; + // aapt resource value: 0x7f070295 + public const int otp_discarded_no_space = 2131165845; - // aapt resource value: 0x7f0901c5 - public const int no_results = 2131296709; + // aapt resource value: 0x7f07028f + public const int otp_explanation = 2131165839; - // aapt resource value: 0x7f090281 - public const int no_thanks = 2131296897; + // aapt resource value: 0x7f070290 + public const int otp_hint = 2131165840; - // aapt resource value: 0x7f0901c6 - public const int no_url_handler = 2131296710; + // aapt resource value: 0x7f070297 + public const int otps_pending = 2131165847; - // aapt resource value: 0x7f090160 - public const int not_possible_im_picker = 2131296608; + // aapt resource value: 0x7f070298 + public const int otpsecret_hint = 2131165848; - // aapt resource value: 0x7f0900f9 - public const int oi_filemanager_market = 2131296505; + // aapt resource value: 0x7f0701b8 + public const int pass_filename = 2131165624; - // aapt resource value: 0x7f0900fa - public const int oi_filemanager_web = 2131296506; + // aapt resource value: 0x7f070140 + public const int password_access_prefs = 2131165504; - // aapt resource value: 0x7f090082 - public const int ok = 2131296386; + // aapt resource value: 0x7f070100 + public const int password_access_prefs_key = 2131165440; - // aapt resource value: 0x7f090280 - public const int ok_donate = 2131296896; + // aapt resource value: 0x7f0701b9 + public const int password_title = 2131165625; - // aapt resource value: 0x7f090106 - public const int omitbackup_key = 2131296518; + // aapt resource value: 0x7f0700e6 + public const int permission_desc = 2131165414; - // aapt resource value: 0x7f0901c9 - public const int omitbackup_summary = 2131296713; + // aapt resource value: 0x7f07014d + public const int please_activate_keyboard = 2131165517; - // aapt resource value: 0x7f0901c8 - public const int omitbackup_title = 2131296712; + // aapt resource value: 0x7f0701e4 + public const int please_note = 2131165668; - // aapt resource value: 0x7f0900a6 - public const int open_entry = 2131296422; + // aapt resource value: 0x7f0702aa + public const int plugin_author = 2131165866; - // aapt resource value: 0x7f0900a7 - public const int open_entry_for_app = 2131296423; + // aapt resource value: 0x7f0702a9 + public const int plugin_description = 2131165865; - // aapt resource value: 0x7f0901c7 - public const int open_recent = 2131296711; + // aapt resource value: 0x7f0702ac + public const int plugin_disabled = 2131165868; - // aapt resource value: 0x7f090089 - public const int open_the_keyboard = 2131296393; + // aapt resource value: 0x7f0702ab + public const int plugin_enabled = 2131165867; - // aapt resource value: 0x7f090279 - public const int otp_aux_file = 2131296889; + // aapt resource value: 0x7f0702b1 + public const int plugin_enabled_checkbox = 2131165873; - // aapt resource value: 0x7f0902a8 - public const int otp_discarded_because_db_open = 2131296936; + // aapt resource value: 0x7f0702a8 + public const int plugin_packagename = 2131165864; - // aapt resource value: 0x7f0902a6 - public const int otp_discarded_because_no_db = 2131296934; + // aapt resource value: 0x7f0702ae + public const int plugin_scopes = 2131165870; - // aapt resource value: 0x7f0902a7 - public const int otp_discarded_no_space = 2131296935; + // aapt resource value: 0x7f0702ad + public const int plugin_web = 2131165869; - // aapt resource value: 0x7f0902a1 - public const int otp_explanation = 2131296929; + // aapt resource value: 0x7f0702a7 + public const int plugins = 2131165863; - // aapt resource value: 0x7f0902a2 - public const int otp_hint = 2131296930; + // aapt resource value: 0x7f070078 + public const int popular_domain_0 = 2131165304; - // aapt resource value: 0x7f0902a9 - public const int otps_pending = 2131296937; + // aapt resource value: 0x7f070079 + public const int popular_domain_1 = 2131165305; - // aapt resource value: 0x7f0902aa - public const int otpsecret_hint = 2131296938; + // aapt resource value: 0x7f07007a + public const int popular_domain_2 = 2131165306; - // aapt resource value: 0x7f0901ca - public const int pass_filename = 2131296714; + // aapt resource value: 0x7f07007b + public const int popular_domain_3 = 2131165307; - // aapt resource value: 0x7f090154 - public const int password_access_prefs = 2131296596; + // aapt resource value: 0x7f07007c + public const int popular_domain_4 = 2131165308; - // aapt resource value: 0x7f090115 - public const int password_access_prefs_key = 2131296533; + // aapt resource value: 0x7f070025 + public const int popup_on_keypress = 2131165221; - // aapt resource value: 0x7f0901cb - public const int password_title = 2131296715; + // aapt resource value: 0x7f07002c + public const int prediction = 2131165228; - // aapt resource value: 0x7f0900fb - public const int permission_desc = 2131296507; + // aapt resource value: 0x7f070043 + public const int prediction_basic = 2131165251; - // aapt resource value: 0x7f090161 - public const int please_activate_keyboard = 2131296609; + // aapt resource value: 0x7f07002d + public const int prediction_category = 2131165229; - // aapt resource value: 0x7f0901f6 - public const int please_note = 2131296758; + // aapt resource value: 0x7f070044 + public const int prediction_full = 2131165252; - // aapt resource value: 0x7f0902bc - public const int plugin_author = 2131296956; + // aapt resource value: 0x7f070030 + public const int prediction_landscape = 2131165232; - // aapt resource value: 0x7f0902bb - public const int plugin_description = 2131296955; + // aapt resource value: 0x7f070031 + public const int prediction_landscape_summary = 2131165233; - // aapt resource value: 0x7f0902be - public const int plugin_disabled = 2131296958; + // aapt resource value: 0x7f070042 + public const int prediction_none = 2131165250; - // aapt resource value: 0x7f0902bd - public const int plugin_enabled = 2131296957; + // aapt resource value: 0x7f07002e + public const int prediction_summary = 2131165230; - // aapt resource value: 0x7f0902c3 - public const int plugin_enabled_checkbox = 2131296963; + // aapt resource value: 0x7f07008f + public const int prefs_debug_mode = 2131165327; - // aapt resource value: 0x7f0902ba - public const int plugin_packagename = 2131296954; + // aapt resource value: 0x7f070083 + public const int prefs_description_log = 2131165315; - // aapt resource value: 0x7f0902c0 - public const int plugin_scopes = 2131296960; + // aapt resource value: 0x7f070082 + public const int prefs_enable_log = 2131165314; - // aapt resource value: 0x7f0902bf - public const int plugin_web = 2131296959; + // aapt resource value: 0x7f070084 + public const int prefs_enable_recorrection = 2131165316; - // aapt resource value: 0x7f0902b9 - public const int plugins = 2131296953; + // aapt resource value: 0x7f070085 + public const int prefs_enable_recorrection_summary = 2131165317; - // aapt resource value: 0x7f09008d - public const int popular_domain_0 = 2131296397; + // aapt resource value: 0x7f07003c + public const int prefs_settings_key = 2131165244; - // aapt resource value: 0x7f09008e - public const int popular_domain_1 = 2131296398; + // aapt resource value: 0x7f0701bb + public const int progress_create = 2131165627; - // aapt resource value: 0x7f09008f - public const int popular_domain_2 = 2131296399; + // aapt resource value: 0x7f0701bd + public const int progress_title = 2131165629; - // aapt resource value: 0x7f090090 - public const int popular_domain_3 = 2131296400; + // aapt resource value: 0x7f070212 + public const int protection = 2131165714; - // aapt resource value: 0x7f090091 - public const int popular_domain_4 = 2131296401; + // aapt resource value: 0x7f0702b0 + public const int query_credentials = 2131165872; - // aapt resource value: 0x7f09003a - public const int popup_on_keypress = 2131296314; + // aapt resource value: 0x7f0702af + public const int query_credentials_for_url = 2131165871; - // aapt resource value: 0x7f090041 - public const int prediction = 2131296321; + // aapt resource value: 0x7f070036 + public const int quick_fixes = 2131165238; - // aapt resource value: 0x7f090058 - public const int prediction_basic = 2131296344; + // aapt resource value: 0x7f070037 + public const int quick_fixes_summary = 2131165239; - // aapt resource value: 0x7f090042 - public const int prediction_category = 2131296322; + // aapt resource value: 0x7f070244 + public const int rate_app = 2131165764; - // aapt resource value: 0x7f090059 - public const int prediction_full = 2131296345; + // aapt resource value: 0x7f0701e6 + public const int regular_expression = 2131165670; - // aapt resource value: 0x7f090045 - public const int prediction_landscape = 2131296325; + // aapt resource value: 0x7f0701be + public const int remember_keyfile_summary = 2131165630; - // aapt resource value: 0x7f090046 - public const int prediction_landscape_summary = 2131296326; + // aapt resource value: 0x7f0701bf + public const int remember_keyfile_title = 2131165631; - // aapt resource value: 0x7f090057 - public const int prediction_none = 2131296343; + // aapt resource value: 0x7f0701c0 + public const int remove_from_filelist = 2131165632; - // aapt resource value: 0x7f090043 - public const int prediction_summary = 2131296323; + // aapt resource value: 0x7f0701c1 + public const int rijndael = 2131165633; - // aapt resource value: 0x7f0900a4 - public const int prefs_debug_mode = 2131296420; + // aapt resource value: 0x7f0701c2 + public const int root = 2131165634; - // aapt resource value: 0x7f090098 - public const int prefs_description_log = 2131296408; + // aapt resource value: 0x7f0701c3 + public const int rounds = 2131165635; - // aapt resource value: 0x7f090097 - public const int prefs_enable_log = 2131296407; + // aapt resource value: 0x7f0701c4 + public const int rounds_explaination = 2131165636; - // aapt resource value: 0x7f090099 - public const int prefs_enable_recorrection = 2131296409; + // aapt resource value: 0x7f0701c5 + public const int rounds_hint = 2131165637; - // aapt resource value: 0x7f09009a - public const int prefs_enable_recorrection_summary = 2131296410; + // aapt resource value: 0x7f0700ed + public const int rounds_key = 2131165421; - // aapt resource value: 0x7f090051 - public const int prefs_settings_key = 2131296337; + // aapt resource value: 0x7f0701c8 + public const int saving_database = 2131165640; - // aapt resource value: 0x7f0901cd - public const int progress_create = 2131296717; + // aapt resource value: 0x7f0701d1 + public const int search_hint = 2131165649; - // aapt resource value: 0x7f0901cf - public const int progress_title = 2131296719; + // aapt resource value: 0x7f0701d3 + public const int search_in = 2131165651; - // aapt resource value: 0x7f090224 - public const int protection = 2131296804; + // aapt resource value: 0x7f0701cc + public const int search_label = 2131165644; - // aapt resource value: 0x7f0902c2 - public const int query_credentials = 2131296962; + // aapt resource value: 0x7f0701ef + public const int search_options = 2131165679; - // aapt resource value: 0x7f0902c1 - public const int query_credentials_for_url = 2131296961; + // aapt resource value: 0x7f0701d2 + public const int search_results = 2131165650; - // aapt resource value: 0x7f09004b - public const int quick_fixes = 2131296331; + // aapt resource value: 0x7f07013e + public const int security_prefs = 2131165502; - // aapt resource value: 0x7f09004c - public const int quick_fixes_summary = 2131296332; + // aapt resource value: 0x7f070101 + public const int security_prefs_key = 2131165441; - // aapt resource value: 0x7f090256 - public const int rate_app = 2131296854; + // aapt resource value: 0x7f07007d + public const int selectInputMethod = 2131165309; - // aapt resource value: 0x7f0901f8 - public const int regular_expression = 2131296760; + // aapt resource value: 0x7f0701d5 + public const int select_group_then_add = 2131165653; - // aapt resource value: 0x7f0901d0 - public const int remember_keyfile_summary = 2131296720; + // aapt resource value: 0x7f0701d4 + public const int select_other_entry = 2131165652; - // aapt resource value: 0x7f0901d1 - public const int remember_keyfile_title = 2131296721; + // aapt resource value: 0x7f070274 + public const int select_storage_type = 2131165812; - // aapt resource value: 0x7f0901d2 - public const int remove_from_filelist = 2131296722; + // aapt resource value: 0x7f07001b + public const int sentence_separators = 2131165211; - // aapt resource value: 0x7f0901d3 - public const int rijndael = 2131296723; + // aapt resource value: 0x7f07001f + public const int settings_key_mode_always_hide = 2131165215; - // aapt resource value: 0x7f0901d4 - public const int root = 2131296724; + // aapt resource value: 0x7f07003f + public const int settings_key_mode_always_hide_name = 2131165247; - // aapt resource value: 0x7f0901d5 - public const int rounds = 2131296725; + // aapt resource value: 0x7f07001e + public const int settings_key_mode_always_show = 2131165214; - // aapt resource value: 0x7f0901d6 - public const int rounds_explaination = 2131296726; + // aapt resource value: 0x7f07003e + public const int settings_key_mode_always_show_name = 2131165246; - // aapt resource value: 0x7f0901d7 - public const int rounds_hint = 2131296727; + // aapt resource value: 0x7f07001d + public const int settings_key_mode_auto = 2131165213; - // aapt resource value: 0x7f090102 - public const int rounds_key = 2131296514; + // aapt resource value: 0x7f07003d + public const int settings_key_mode_auto_name = 2131165245; - // aapt resource value: 0x7f0901da - public const int saving_database = 2131296730; + // aapt resource value: 0x7f07012f + public const int short_app_name = 2131165487; - // aapt resource value: 0x7f0901e3 - public const int search_hint = 2131296739; + // aapt resource value: 0x7f070131 + public const int short_app_name_nonet = 2131165489; - // aapt resource value: 0x7f0901e5 - public const int search_in = 2131296741; + // aapt resource value: 0x7f070135 + public const int show_kill_app = 2131165493; - // aapt resource value: 0x7f0901de - public const int search_label = 2131296734; + // aapt resource value: 0x7f0700ea + public const int show_kill_app_key = 2131165418; - // aapt resource value: 0x7f090201 - public const int search_options = 2131296769; + // aapt resource value: 0x7f070136 + public const int show_kill_app_summary = 2131165494; - // aapt resource value: 0x7f0901e4 - public const int search_results = 2131296740; + // aapt resource value: 0x7f0701cd + public const int show_password = 2131165645; - // aapt resource value: 0x7f090152 - public const int security_prefs = 2131296594; + // aapt resource value: 0x7f070038 + public const int show_suggestions = 2131165240; - // aapt resource value: 0x7f090116 - public const int security_prefs_key = 2131296534; + // aapt resource value: 0x7f070039 + public const int show_suggestions_summary = 2131165241; - // aapt resource value: 0x7f090092 - public const int selectInputMethod = 2131296402; + // aapt resource value: 0x7f0701cf + public const int sort_db = 2131165647; - // aapt resource value: 0x7f0901e7 - public const int select_group_then_add = 2131296743; + // aapt resource value: 0x7f0700f4 + public const int sort_key = 2131165428; - // aapt resource value: 0x7f0901e6 - public const int select_other_entry = 2131296742; + // aapt resource value: 0x7f0701ce + public const int sort_name = 2131165646; - // aapt resource value: 0x7f090286 - public const int select_storage_type = 2131296902; + // aapt resource value: 0x7f070024 + public const int sound_on_keypress = 2131165220; - // aapt resource value: 0x7f090030 - public const int sentence_separators = 2131296304; + // aapt resource value: 0x7f0701cb + public const int space = 2131165643; - // aapt resource value: 0x7f090034 - public const int settings_key_mode_always_hide = 2131296308; + // aapt resource value: 0x7f0701d0 + public const int special = 2131165648; - // aapt resource value: 0x7f090054 - public const int settings_key_mode_always_hide_name = 2131296340; + // aapt resource value: 0x7f0701f2 + public const int start_create = 2131165682; - // aapt resource value: 0x7f090033 - public const int settings_key_mode_always_show = 2131296307; + // aapt resource value: 0x7f0701f4 + public const int start_create_import = 2131165684; - // aapt resource value: 0x7f090053 - public const int settings_key_mode_always_show_name = 2131296339; + // aapt resource value: 0x7f0701f1 + public const int start_open_file = 2131165681; - // aapt resource value: 0x7f090032 - public const int settings_key_mode_auto = 2131296306; + // aapt resource value: 0x7f0701f3 + public const int start_open_url = 2131165683; - // aapt resource value: 0x7f090052 - public const int settings_key_mode_auto_name = 2131296338; + // aapt resource value: 0x7f07008c + public const int subtype_mode_keyboard = 2131165324; - // aapt resource value: 0x7f090144 - public const int short_app_name = 2131296580; + // aapt resource value: 0x7f07008d + public const int subtype_mode_voice = 2131165325; - // aapt resource value: 0x7f090146 - public const int short_app_name_nonet = 2131296582; + // aapt resource value: 0x7f070243 + public const int suggest_improvements = 2131165763; - // aapt resource value: 0x7f09014a - public const int show_kill_app = 2131296586; + // aapt resource value: 0x7f07001c + public const int suggested_punctuations = 2131165212; - // aapt resource value: 0x7f0900ff - public const int show_kill_app_key = 2131296511; + // aapt resource value: 0x7f070269 + public const int synchronize_database_menu = 2131165801; - // aapt resource value: 0x7f09014b - public const int show_kill_app_summary = 2131296587; + // aapt resource value: 0x7f070048 + public const int tip_access_symbols = 2131165256; - // aapt resource value: 0x7f0901df - public const int show_password = 2131296735; + // aapt resource value: 0x7f070049 + public const int tip_add_to_dictionary = 2131165257; - // aapt resource value: 0x7f09004d - public const int show_suggestions = 2131296333; + // aapt resource value: 0x7f070047 + public const int tip_dismiss = 2131165255; - // aapt resource value: 0x7f09004e - public const int show_suggestions_summary = 2131296334; + // aapt resource value: 0x7f070046 + public const int tip_long_press = 2131165254; - // aapt resource value: 0x7f0901e1 - public const int sort_db = 2131296737; + // aapt resource value: 0x7f07004f + public const int tip_to_close_symbols = 2131165263; - // aapt resource value: 0x7f090109 - public const int sort_key = 2131296521; + // aapt resource value: 0x7f070050 + public const int tip_to_launch_settings = 2131165264; - // aapt resource value: 0x7f0901e0 - public const int sort_name = 2131296736; + // aapt resource value: 0x7f07004c + public const int tip_to_open_keyboard = 2131165260; - // aapt resource value: 0x7f090039 - public const int sound_on_keypress = 2131296313; + // aapt resource value: 0x7f07004e + public const int tip_to_open_symbols = 2131165262; - // aapt resource value: 0x7f0901dd - public const int space = 2131296733; + // aapt resource value: 0x7f070051 + public const int tip_to_start_typing = 2131165265; - // aapt resource value: 0x7f0901e2 - public const int special = 2131296738; + // aapt resource value: 0x7f07004d + public const int tip_to_view_accents = 2131165261; - // aapt resource value: 0x7f090204 - public const int start_create = 2131296772; + // aapt resource value: 0x7f070076 + public const int touch_and_hold = 2131165302; - // aapt resource value: 0x7f090206 - public const int start_create_import = 2131296774; + // aapt resource value: 0x7f07004a + public const int touch_to_continue = 2131165258; - // aapt resource value: 0x7f090203 - public const int start_open_file = 2131296771; + // aapt resource value: 0x7f07004b + public const int touch_to_finish = 2131165259; - // aapt resource value: 0x7f090205 - public const int start_open_url = 2131296773; + // aapt resource value: 0x7f070245 + public const int translate_app = 2131165765; - // aapt resource value: 0x7f0900a1 - public const int subtype_mode_keyboard = 2131296417; + // aapt resource value: 0x7f0701d7 + public const int twofish = 2131165655; - // aapt resource value: 0x7f0900a2 - public const int subtype_mode_voice = 2131296418; + // aapt resource value: 0x7f0701d8 + public const int underline = 2131165656; - // aapt resource value: 0x7f090255 - public const int suggest_improvements = 2131296853; + // aapt resource value: 0x7f07013d + public const int unknown_uri_scheme = 2131165501; - // aapt resource value: 0x7f090031 - public const int suggested_punctuations = 2131296305; + // aapt resource value: 0x7f0701d9 + public const int unsupported_db_version = 2131165657; - // aapt resource value: 0x7f09027b - public const int synchronize_database_menu = 2131296891; + // aapt resource value: 0x7f0701da + public const int uppercase = 2131165658; - // aapt resource value: 0x7f09005d - public const int tip_access_symbols = 2131296349; + // aapt resource value: 0x7f07028c + public const int use_key_file = 2131165836; - // aapt resource value: 0x7f09005e - public const int tip_add_to_dictionary = 2131296350; + // aapt resource value: 0x7f0701de + public const int version_history = 2131165662; - // aapt resource value: 0x7f09005c - public const int tip_dismiss = 2131296348; + // aapt resource value: 0x7f0701dd + public const int version_label = 2131165661; - // aapt resource value: 0x7f09005b - public const int tip_long_press = 2131296347; + // aapt resource value: 0x7f070023 + public const int vibrate_on_keypress = 2131165219; - // aapt resource value: 0x7f090064 - public const int tip_to_close_symbols = 2131296356; + // aapt resource value: 0x7f070065 + public const int voice_audio_error = 2131165285; - // aapt resource value: 0x7f090065 - public const int tip_to_launch_settings = 2131296357; + // aapt resource value: 0x7f070062 + public const int voice_error = 2131165282; - // aapt resource value: 0x7f090061 - public const int tip_to_open_keyboard = 2131296353; + // aapt resource value: 0x7f07005e + public const int voice_hint_dialog_message = 2131165278; - // aapt resource value: 0x7f090063 - public const int tip_to_open_symbols = 2131296355; + // aapt resource value: 0x7f070061 + public const int voice_initializing = 2131165281; - // aapt resource value: 0x7f090066 - public const int tip_to_start_typing = 2131296358; + // aapt resource value: 0x7f07006e + public const int voice_input = 2131165294; - // aapt resource value: 0x7f090062 - public const int tip_to_view_accents = 2131296354; + // aapt resource value: 0x7f07005f + public const int voice_listening = 2131165279; - // aapt resource value: 0x7f09008b - public const int touch_and_hold = 2131296395; + // aapt resource value: 0x7f07006f + public const int voice_mode_main = 2131165295; - // aapt resource value: 0x7f09005f - public const int touch_to_continue = 2131296351; + // aapt resource value: 0x7f070071 + public const int voice_mode_off = 2131165297; - // aapt resource value: 0x7f090060 - public const int touch_to_finish = 2131296352; + // aapt resource value: 0x7f070070 + public const int voice_mode_symbols = 2131165296; - // aapt resource value: 0x7f090257 - public const int translate_app = 2131296855; + // aapt resource value: 0x7f070063 + public const int voice_network_error = 2131165283; - // aapt resource value: 0x7f0901e9 - public const int twofish = 2131296745; + // aapt resource value: 0x7f070068 + public const int voice_no_match = 2131165288; - // aapt resource value: 0x7f0901ea - public const int underline = 2131296746; + // aapt resource value: 0x7f070069 + public const int voice_not_installed = 2131165289; - // aapt resource value: 0x7f0901eb - public const int unsupported_db_version = 2131296747; + // aapt resource value: 0x7f07006b + public const int voice_punctuation_hint = 2131165291; - // aapt resource value: 0x7f0901ec - public const int uppercase = 2131296748; + // aapt resource value: 0x7f070066 + public const int voice_server_error = 2131165286; - // aapt resource value: 0x7f09029e - public const int use_key_file = 2131296926; + // aapt resource value: 0x7f070067 + public const int voice_speech_timeout = 2131165287; - // aapt resource value: 0x7f0901f0 - public const int version_history = 2131296752; + // aapt resource value: 0x7f07006a + public const int voice_swipe_hint = 2131165290; - // aapt resource value: 0x7f0901ef - public const int version_label = 2131296751; + // aapt resource value: 0x7f070064 + public const int voice_too_much_speech = 2131165284; - // aapt resource value: 0x7f090038 - public const int vibrate_on_keypress = 2131296312; + // aapt resource value: 0x7f07005d + public const int voice_warning_how_to_turn_off = 2131165277; - // aapt resource value: 0x7f09007a - public const int voice_audio_error = 2131296378; + // aapt resource value: 0x7f07005b + public const int voice_warning_locale_not_supported = 2131165275; - // aapt resource value: 0x7f090077 - public const int voice_error = 2131296375; + // aapt resource value: 0x7f07005c + public const int voice_warning_may_not_understand = 2131165276; - // aapt resource value: 0x7f090073 - public const int voice_hint_dialog_message = 2131296371; + // aapt resource value: 0x7f07005a + public const int voice_warning_title = 2131165274; - // aapt resource value: 0x7f090076 - public const int voice_initializing = 2131296374; + // aapt resource value: 0x7f070060 + public const int voice_working = 2131165280; - // aapt resource value: 0x7f090083 - public const int voice_input = 2131296387; + // aapt resource value: 0x7f0701db + public const int warning_read_only = 2131165659; - // aapt resource value: 0x7f090074 - public const int voice_listening = 2131296372; + // aapt resource value: 0x7f0701dc + public const int warning_unmounted = 2131165660; - // aapt resource value: 0x7f090084 - public const int voice_mode_main = 2131296388; + // aapt resource value: 0x7f07001a + public const int word_separators = 2131165210; - // aapt resource value: 0x7f090086 - public const int voice_mode_off = 2131296390; - - // aapt resource value: 0x7f090085 - public const int voice_mode_symbols = 2131296389; - - // aapt resource value: 0x7f090078 - public const int voice_network_error = 2131296376; - - // aapt resource value: 0x7f09007d - public const int voice_no_match = 2131296381; - - // aapt resource value: 0x7f09007e - public const int voice_not_installed = 2131296382; - - // aapt resource value: 0x7f090080 - public const int voice_punctuation_hint = 2131296384; - - // aapt resource value: 0x7f09007b - public const int voice_server_error = 2131296379; - - // aapt resource value: 0x7f09007c - public const int voice_speech_timeout = 2131296380; - - // aapt resource value: 0x7f09007f - public const int voice_swipe_hint = 2131296383; - - // aapt resource value: 0x7f090079 - public const int voice_too_much_speech = 2131296377; - - // aapt resource value: 0x7f090072 - public const int voice_warning_how_to_turn_off = 2131296370; - - // aapt resource value: 0x7f090070 - public const int voice_warning_locale_not_supported = 2131296368; - - // aapt resource value: 0x7f090071 - public const int voice_warning_may_not_understand = 2131296369; - - // aapt resource value: 0x7f09006f - public const int voice_warning_title = 2131296367; - - // aapt resource value: 0x7f090075 - public const int voice_working = 2131296373; - - // aapt resource value: 0x7f0901ed - public const int warning_read_only = 2131296749; - - // aapt resource value: 0x7f0901ee - public const int warning_unmounted = 2131296750; - - // aapt resource value: 0x7f09002f - public const int word_separators = 2131296303; - - // aapt resource value: 0x7f0901c2 - public const int yes = 2131296706; + // aapt resource value: 0x7f0701b0 + public const int yes = 2131165616; static String() { @@ -5988,11 +5778,11 @@ namespace keepass2android { public static int[] AfcSearchView = new int[] { - 2130771998, - 2130771999, - 2130772000, - 2130772001, - 2130772002}; + 2130771984, + 2130771985, + 2130771986, + 2130771987, + 2130771988}; // aapt resource value: 2 public const int AfcSearchView_closable = 2; @@ -6011,7 +5801,7 @@ namespace keepass2android public static int[] Kp2aShortHelpView = new int[] { 16843087, - 2130772050}; + 2130772036}; // aapt resource value: 0 public const int Kp2aShortHelpView_android_text = 0; @@ -6020,22 +5810,22 @@ namespace keepass2android public const int Kp2aShortHelpView_help_text = 1; public static int[] LatinKeyboardBaseView = new int[] { + 2130771968, + 2130771969, + 2130771970, + 2130771971, + 2130771972, + 2130771973, + 2130771974, + 2130771975, + 2130771976, + 2130771977, + 2130771978, + 2130771979, + 2130771980, + 2130771981, 2130771982, - 2130771983, - 2130771984, - 2130771985, - 2130771986, - 2130771987, - 2130771988, - 2130771989, - 2130771990, - 2130771991, - 2130771992, - 2130771993, - 2130771994, - 2130771995, - 2130771996, - 2130771997}; + 2130771983}; // aapt resource value: 13 public const int LatinKeyboardBaseView_backgroundDimAmount = 13; @@ -6085,67 +5875,9 @@ namespace keepass2android // aapt resource value: 9 public const int LatinKeyboardBaseView_verticalCorrection = 9; - public static int[] MapAttrs = new int[] { - 2130771968, - 2130771969, - 2130771970, - 2130771971, - 2130771972, - 2130771973, - 2130771974, - 2130771975, - 2130771976, - 2130771977, - 2130771978, - 2130771979, - 2130771980, - 2130771981}; - - // aapt resource value: 1 - public const int MapAttrs_cameraBearing = 1; - - // aapt resource value: 2 - public const int MapAttrs_cameraTargetLat = 2; - - // aapt resource value: 3 - public const int MapAttrs_cameraTargetLng = 3; - - // aapt resource value: 4 - public const int MapAttrs_cameraTilt = 4; - - // aapt resource value: 5 - public const int MapAttrs_cameraZoom = 5; - - // aapt resource value: 0 - public const int MapAttrs_mapType = 0; - - // aapt resource value: 6 - public const int MapAttrs_uiCompass = 6; - - // aapt resource value: 7 - public const int MapAttrs_uiRotateGestures = 7; - - // aapt resource value: 8 - public const int MapAttrs_uiScrollGestures = 8; - - // aapt resource value: 9 - public const int MapAttrs_uiTiltGestures = 9; - - // aapt resource value: 10 - public const int MapAttrs_uiZoomControls = 10; - - // aapt resource value: 11 - public const int MapAttrs_uiZoomGestures = 11; - - // aapt resource value: 12 - public const int MapAttrs_useViewLifecycle = 12; - - // aapt resource value: 13 - public const int MapAttrs_zOrderOnTop = 13; - public static int[] TextWithHelp = new int[] { 16843087, - 2130772050}; + 2130772036}; // aapt resource value: 0 public const int TextWithHelp_android_text = 0; diff --git a/src/keepass2android/Resources/layout/password.xml b/src/keepass2android/Resources/layout/password.xml index 483f3dd5..5164d727 100644 --- a/src/keepass2android/Resources/layout/password.xml +++ b/src/keepass2android/Resources/layout/password.xml @@ -86,25 +86,61 @@ android:layout_height="match_parent" android:layout_height="wrap_content" android:src="@drawable/ic_menu_view" /> + - - + + + + + + + android:src="@drawable/ic_storage_file" + android:padding="5dp" + + /> + + + + + + + +