mirror of
https://github.com/bitwarden/android.git
synced 2024-12-26 19:08:32 +03:00
33df456cfd
* First pass at vault export UI * Password validation via cryptoService * Export service framework * support for constructing json export data * Support for constructing csv export data * Cleanup and simplification * Completion of vault export feature * Formatting and simplification * Use dialog instead of toast for invalid master password entry
38 lines
2.2 KiB
C#
38 lines
2.2 KiB
C#
namespace Bit.Core
|
|
{
|
|
public static class Constants
|
|
{
|
|
public const string AndroidAppProtocol = "androidapp://";
|
|
public const string iOSAppProtocol = "iosapp://";
|
|
public static string LockOptionKey = "lockOption";
|
|
public static string LastActiveKey = "lastActive";
|
|
public static string FingerprintUnlockKey = "fingerprintUnlock";
|
|
public static string ProtectedPin = "protectedPin";
|
|
public static string PinProtectedKey = "pinProtectedKey";
|
|
public static string DefaultUriMatch = "defaultUriMatch";
|
|
public static string DisableAutoTotpCopyKey = "disableAutoTotpCopy";
|
|
public static string EnvironmentUrlsKey = "environmentUrls";
|
|
public static string LastFileCacheClearKey = "lastFileCacheClear";
|
|
public static string AutofillDisableSavePromptKey = "autofillDisableSavePrompt";
|
|
public static string AutofillBlacklistedUrisKey = "autofillBlacklistedUris";
|
|
public static string DisableFaviconKey = "disableFavicon";
|
|
public static string PushRegisteredTokenKey = "pushRegisteredToken";
|
|
public static string PushCurrentTokenKey = "pushCurrentToken";
|
|
public static string PushLastRegistrationDateKey = "pushLastRegistrationDate";
|
|
public static string PushInitialPromptShownKey = "pushInitialPromptShown";
|
|
public static string ThemeKey = "theme";
|
|
public static string ClearClipboardKey = "clearClipboard";
|
|
public static string LastBuildKey = "lastBuild";
|
|
public static string OldUserIdKey = "userId";
|
|
public static string AddSitePromptShownKey = "addSitePromptShown";
|
|
public static string ClearCiphersCacheKey = "clearCiphersCache";
|
|
public static string MigratedFromV1 = "migratedFromV1";
|
|
public static string MigratedFromV1AutofillPromptShown = "migratedV1AutofillPromptShown";
|
|
public static string TriedV1Resync = "triedV1Resync";
|
|
public static string EventCollectionKey = "eventCollection";
|
|
public static string PreviousPageKey = "previousPage";
|
|
public const int SelectFileRequestCode = 42;
|
|
public const int SelectFilePermissionRequestCode = 43;
|
|
public const int SaveFileRequestCode = 44;
|
|
}
|
|
}
|