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(); }
public Setup(MvxApplicationDelegate appDelegate, IMvxTouchViewPresenter presenter) : base(appDelegate, presenter) { }
/// <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) { }
protected MvxTouchDialogBindingSetup(MvxApplicationDelegate applicationDelegate, IMvxTouchViewPresenter presenter) : base(applicationDelegate, presenter) { }
public Setup(MvxApplicationDelegate applicationDelegate, CustomerManagementPresenter presenter) : base(applicationDelegate, presenter) { _presenter = presenter; }
public Setup(MvxApplicationDelegate applicationDelegate, UIWindow window) : base(applicationDelegate, window) { _applicationDelegate = applicationDelegate; _window = window; }
public ExampleSetup(MvxApplicationDelegate applicationDelegate, UIWindow window) : base(applicationDelegate, window) { _window = window; _applicationDelegate = applicationDelegate; }
protected MvxBaseTouchSetup(MvxApplicationDelegate applicationDelegate, IMvxTouchViewPresenter presenter) { _presenter = presenter; _applicationDelegate = applicationDelegate; }
public AppSetup(MvxApplicationDelegate appDelegate, UIWindow window) : base(appDelegate, window) { // nothing to }
protected MvxBaseMacSetup(MvxApplicationDelegate applicationDelegate, IMvxMacViewPresenter presenter) { _presenter = presenter; _applicationDelegate = applicationDelegate; }
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)); }
public Setup(MvxApplicationDelegate deleg, IMvxTouchViewPresenter presenter) : base(deleg, presenter) { }