Skip to content

Instantly share code, notes, and snippets.

@rafaelrmou
Created October 28, 2015 12:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rafaelrmou/e89e3dbd574e41d7d55e to your computer and use it in GitHub Desktop.
Save rafaelrmou/e89e3dbd574e41d7d55e to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using Foundation;
using UIKit;
namespace AppTestForFastMapper.iOS
{
[Register("AppDelegate")]
public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate
{
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
// Inicialização das configurações do AutoMapper.
Bootstrapper bootstrapper = new Bootstrapper();
bootstrapper.AutomapperInit();
global::Xamarin.Forms.Forms.Init();
// Code for starting up the Xamarin Test Cloud Agent
#if ENABLE_TEST_CLOUD
Xamarin.Calabash.Start();
#endif
LoadApplication(new App());
return base.FinishedLaunching(app, options);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment