protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);
            Forms.Init(this, bundle);

            AppDomain.CurrentDomain.UnhandledException += (sender, args) => Logger.Error("Unhandled exception", args.ExceptionObject as Exception);

            var androidFileRepository = new AndroidFileRepository();

            AlwaysShowMenuButton();

            var app = new App(androidFileRepository, new ExternalBrowserService());
            LoadApplication(app);
        }
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);
            Forms.Init(this, bundle);

            AppDomain.CurrentDomain.UnhandledException += (sender, args) => Logger.Error("Unhandled exception", args.ExceptionObject as Exception);

            var androidFileRepository = new AndroidFileRepository();

            AlwaysShowMenuButton();

            var app = new App(androidFileRepository, new ExternalBrowserService());

            LoadApplication(app);
        }