Browse Source

EC-602 added droid constants file with the package name constant (#2126)

github-services/pull/2127/head
Federico Maccaroni 3 years ago committed by GitHub
parent
commit
2d35a00caa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      src/Android/Android.csproj
  2. 7
      src/Android/Constants.cs

1
src/Android/Android.csproj

@ -152,6 +152,7 @@ @@ -152,6 +152,7 @@
<Compile Include="Utilities\IntentExtensions.cs" />
<Compile Include="Renderers\CustomPageRenderer.cs" />
<Compile Include="Effects\NoEmojiKeyboardEffect.cs" />
<Compile Include="Constants.cs" />
</ItemGroup>
<ItemGroup>
<AndroidAsset Include="Assets\bwi-font.ttf" />

7
src/Android/Constants.cs

@ -0,0 +1,7 @@ @@ -0,0 +1,7 @@
namespace Bit.Droid
{
public static class Constants
{
public const string PACKAGE_NAME = "com.x8bit.bitwarden";
}
}
Loading…
Cancel
Save