Example #1
0
        public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
        {
            // This line is all you'll need to get started.
            BugReporter = Aardvark.AddDefaultBugReportingGesture("*****@*****.**");

            // Log all ARKLog messages to Crashlytics to help debug crashes.
            LogDistributor.DefaultDistributor.AddLogObserver(new ConsoleLogObserver());

            Aardvark.Log(LogType.Separator, null, @"Hello World");

            return(true);
        }
Example #2
0
		public override bool FinishedLaunching (UIApplication application, NSDictionary launchOptions)
		{
			// This line is all you'll need to get started.
			BugReporter = Aardvark.AddDefaultBugReportingGesture ("*****@*****.**");

			// Log all ARKLog messages to Crashlytics to help debug crashes.
			LogDistributor.DefaultDistributor.AddLogObserver (new ConsoleLogObserver ());

			Aardvark.Log (LogType.Separator, null, @"Hello World");

			return true;
		}