2015-10-09 07:08:11 -04:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
using Android.App;
|
|
|
|
using Android.Content;
|
|
|
|
using Android.OS;
|
|
|
|
using Android.Runtime;
|
|
|
|
using Android.Views;
|
|
|
|
using Android.Widget;
|
|
|
|
|
|
|
|
namespace keepass2android.AutoFillPlugin
|
|
|
|
{
|
2015-10-10 07:03:31 -04:00
|
|
|
#if DEBUG
|
2015-10-09 07:08:11 -04:00
|
|
|
[Activity(Label = "MainActivity", MainLauncher =true)]
|
|
|
|
public class MainActivity : Activity
|
|
|
|
{
|
|
|
|
protected override void OnCreate(Bundle bundle)
|
|
|
|
{
|
|
|
|
base.OnCreate(bundle);
|
|
|
|
|
|
|
|
// Create your application here
|
|
|
|
}
|
|
|
|
}
|
2015-10-10 07:03:31 -04:00
|
|
|
#endif
|
2015-10-09 07:08:11 -04:00
|
|
|
}
|