public override bool FinishedLaunching(UIApplication uiApplication, NSDictionary launchOptions) { global::Xamarin.Forms.Forms.Init(); iAd.ADBannerView aDBannerView = new ADBannerView(); //BranchIOS.DelayInitToCheckForSearchAds(); //BranchIOS.UseLongerWaitForAppleSearchAds(); //BranchIOS.IgnoreAppleSearchAdsTestData(); // set Debug mode //BranchIOS.Debug = true; //App app = new App (); //BranchIOS.Init ("your Branch key", launchOptions, app); //LoadApplication (app); // uncomment to try BranchUniversalObject AppBUO appBUO = new AppBUO(); //BranchIOS.DelayInitToCheckForSearchAds(); BranchIOS.Init("key_live_mglVaBqjIsSpREdbUa6DLahhABarUg0a", launchOptions, appBUO); // disable tracking of user data //BranchIOS.getInstance().SetTrackingDisabled(true); LoadApplication(appBUO); return(base.FinishedLaunching(uiApplication, launchOptions)); }
public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions) { #if DEBUG BranchIOS.Debug = true; #endif BranchIOS.Init(BranchService.BranchKey, launchOptions, BranchService.Instance); return(base.FinishedLaunching(application, launchOptions)); }
public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions) { storyboard = UIStoryboard.FromName("Main", null); BranchIOS.Debug = true; BranchIOS.Init(Constants.Branch_key, launchOptions, this); return(true); }
public override bool FinishedLaunching(UIApplication app, NSDictionary options) { global::Xamarin.Forms.Forms.Init(); BranchIOS.Debug = true; BranchIOS.Init("iOs_Live_key", options, this); LoadApplication(new App()); return(base.FinishedLaunching(app, options)); }
public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions) { global::Xamarin.Forms.Forms.Init(); // set Debug mode BranchIOS.Debug = true; //App app = new App (); //BranchIOS.Init ("your Branch key", launchOptions, app); //LoadApplication (app); // uncomment to try BranchUniversalObject AppBUO appBUO = new AppBUO(); BranchIOS.Init("key_live_bmEetSmsaI8OS6fCiyS5VmjhDqnfXBxP", launchOptions, appBUO); LoadApplication(appBUO); return(base.FinishedLaunching(application, launchOptions)); }
public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions) { global::Xamarin.Forms.Forms.Init(); // set Debug mode BranchIOS.Debug = true; App app = new App(); BranchIOS.Init("Your Branch key here", launchOptions, app); LoadApplication(app); // uncomment to try BranchUniversalObject // AppBUO appBUO = new AppBUO (); // BranchIOS.Init ("Your Branch key here", launchOptions, appBUO); // LoadApplication (appBUO); return(base.FinishedLaunching(application, launchOptions)); }