From 2d35a00caacfd0f326f766a1fe77a7ec33429950 Mon Sep 17 00:00:00 2001 From: Federico Maccaroni Date: Tue, 11 Oct 2022 17:08:36 -0300 Subject: [PATCH] EC-602 added droid constants file with the package name constant (#2126) --- src/Android/Android.csproj | 1 + src/Android/Constants.cs | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 src/Android/Constants.cs diff --git a/src/Android/Android.csproj b/src/Android/Android.csproj index 78d51b5f7..dfe728ede 100644 --- a/src/Android/Android.csproj +++ b/src/Android/Android.csproj @@ -152,6 +152,7 @@ + diff --git a/src/Android/Constants.cs b/src/Android/Constants.cs new file mode 100644 index 000000000..398bfb708 --- /dev/null +++ b/src/Android/Constants.cs @@ -0,0 +1,7 @@ +namespace Bit.Droid +{ + public static class Constants + { + public const string PACKAGE_NAME = "com.x8bit.bitwarden"; + } +}