Bitwarden-app-android-iphon.../src/Android/MainApplication.cs

19 lines
414 B
C#

using System;
using Android.App;
using Android.Runtime;
namespace Bit.Droid
{
#if DEBUG
[Application(Debuggable = true)]
#else
[Application(Debuggable = false)]
#endif
[Register("com.x8bit.bitwarden.MainApplication")]
public class MainApplication : Application
{
public MainApplication(IntPtr handle, JniHandleOwnership transer)
: base(handle, transer)
{ }
}
}