Example #1
0
        public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
        {
            // Override point for customization after application launch.
            // If not required for your application you can safely delete this method

            // Code to start the Xamarin Test Cloud Agent
            #if ENABLE_TEST_CLOUD
            Xamarin.Calabash.Start();
            #endif

            Kiip kiip = new Kiip();
            kiip.InitWithAppKey(APP_KEY, APP_SECRET);
            kiip.Delegate = new TestKiipDelegate(this);
            Kiip.SetSharedInstance(kiip);

            return true;
        }
Example #2
0
        public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
        {
            // Override point for customization after application launch.
            // If not required for your application you can safely delete this method

            // Code to start the Xamarin Test Cloud Agent
                        #if ENABLE_TEST_CLOUD
            Xamarin.Calabash.Start();
                        #endif


            Kiip kiip = new Kiip();
            kiip.InitWithAppKey(APP_KEY, APP_SECRET);
            kiip.Delegate = new TestKiipDelegate(this);
            Kiip.SetSharedInstance(kiip);

            return(true);
        }