mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
19 lines
414 B
C#
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)
|
|||
|
{ }
|
|||
|
}
|
|||
|
}
|