public Setup(MvxApplicationDelegate applicationDelegate, IMvxTouchViewPresenter presenter)
			: base(applicationDelegate, presenter)
		{
			// set up the iOS Application Api Key
			AnalyticsApi.ApiKey = "PQSZJRK4B5BW8Q7YQQXF";

			// Starting and ending the sessions specifically for iOS
			AnalyticsApi.StartSession();
		}
Ejemplo n.º 2
0
 public Setup(MvxApplicationDelegate appDelegate, IMvxTouchViewPresenter presenter)
     : base(appDelegate, presenter)
 {
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Setup"/> class.
 /// </summary>
 /// <param name="applicationDelegate">The application delegate.</param>
 /// <param name="window">The window.</param>
 public Setup(MvxApplicationDelegate applicationDelegate, UIWindow window)
     : base(applicationDelegate, window)
 {
 }
Ejemplo n.º 4
0
 protected MvxTouchDialogBindingSetup(MvxApplicationDelegate applicationDelegate,
                                      IMvxTouchViewPresenter presenter)
     : base(applicationDelegate, presenter)
 {
 }
Ejemplo n.º 5
0
 public Setup(MvxApplicationDelegate applicationDelegate, CustomerManagementPresenter presenter)
     : base(applicationDelegate, presenter)
 {
     _presenter = presenter;
 }
Ejemplo n.º 6
0
		public Setup(MvxApplicationDelegate applicationDelegate, UIWindow window)
			: base(applicationDelegate, window)
		{
			_applicationDelegate = applicationDelegate;
			_window = window;
		}
Ejemplo n.º 7
0
 public ExampleSetup(MvxApplicationDelegate applicationDelegate, UIWindow window)
     : base(applicationDelegate, window)
 {
     _window = window;
     _applicationDelegate = applicationDelegate;
 }
Ejemplo n.º 8
0
 protected MvxBaseTouchSetup(MvxApplicationDelegate applicationDelegate, IMvxTouchViewPresenter presenter)
 {
     _presenter = presenter;
     _applicationDelegate = applicationDelegate;
 }
Ejemplo n.º 9
0
        public AppSetup(MvxApplicationDelegate appDelegate, UIWindow window)
            : base(appDelegate, window)
		{
			// nothing to
		}
Ejemplo n.º 10
0
        protected MvxBaseMacSetup(MvxApplicationDelegate applicationDelegate, IMvxMacViewPresenter presenter)
        {
			_presenter = presenter;
			_applicationDelegate = applicationDelegate;
        }
Ejemplo n.º 11
0
		public void SetupAdditionalPlatformTypes(MvxApplicationDelegate applicationDelegate, IMvxTouchViewPresenter presenter)
		{
            if (applicationDelegate == null)
            {
                MvxTrace.Trace(MvxTraceLevel.Warning, "SetupAdditionalPlatformTypes passed null delegate - so platform types will not be initialized");
                return;
            }
			RegisterServiceInstance<IMvxLifetime>(applicationDelegate);
            RegisterServiceInstance<IMvxPictureChooserTask>(new MvxImagePickerTask(presenter));
        }
Ejemplo n.º 12
0
 protected MvxBaseTouchSetup(MvxApplicationDelegate applicationDelegate, IMvxTouchViewPresenter presenter)
 {
     _presenter           = presenter;
     _applicationDelegate = applicationDelegate;
 }
Ejemplo n.º 13
0
Archivo: Setup.cs Proyecto: JayantaP/eh
 public Setup(MvxApplicationDelegate deleg, IMvxTouchViewPresenter presenter)
     : base(deleg, presenter)
 {
 }