mirror of
https://github.com/bitwarden/android.git
synced 2026-05-21 11:56:35 -05:00
stub out xamarin project
This commit is contained in:
19
src/Android/MainApplication.cs
Normal file
19
src/Android/MainApplication.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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)
|
||||
{ }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user