public override bool FinishedLaunching (UIApplication app, NSDictionary options)
 {  
     Window = new UIWindow (UIScreen.MainScreen.Bounds); 
     RootView root = new RootView ();
     Window.RootViewController = new UINavigationController (root);
     Window.TintColor = UIColor.Black;
     Window.MakeKeyAndVisible ();
     ConfigureJudoSettings ();
     return true;   
 }