mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
* [PM-3741] [PM-3750] Improvements to local storage handling * Update src/Android/MainActivity.cs Co-authored-by: Federico Maccaroni <fedemkr@gmail.com> --------- Co-authored-by: Federico Maccaroni <fedemkr@gmail.com>
14 lines
404 B
C#
14 lines
404 B
C#
namespace Bit.Droid
|
|
{
|
|
public static class Constants
|
|
{
|
|
public const string PACKAGE_NAME = "com.x8bit.bitwarden";
|
|
public const string TEMP_CAMERA_IMAGE_NAME = "temp_camera_image.jpg";
|
|
|
|
/// <summary>
|
|
/// This directory must also be declared in filepaths.xml
|
|
/// </summary>
|
|
public const string TEMP_CAMERA_IMAGE_DIR = "camera_temp";
|
|
}
|
|
}
|