public override void OnCreate() { base.OnCreate(); // Setup Application AppController.EnableSettings(new AdMaiora.AppKit.Data.UserSettingsPlatformAndroid()); AppController.EnableUtilities(new AdMaiora.AppKit.Utils.ExecutorPlatformAndroid()); AppController.EnableFileSystem(new AdMaiora.AppKit.IO.FileSystemPlatformAndroid()); AppController.EnableDataStorage(new AdMaiora.AppKit.Data.DataStoragePlatformAndroid()); AppController.EnableServices(new AdMaiora.AppKit.Services.ServiceClientPlatformAndroid()); }
public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions) { // Setup Application AppController.EnableSettings(new AdMaiora.AppKit.Data.UserSettingsPlatformiOS()); AppController.EnableUtilities(new AdMaiora.AppKit.Utils.ExecutorPlatformiOS()); AppController.EnableFileSystem(new AdMaiora.AppKit.IO.FileSystemPlatformiOS()); AppController.EnableDataStorage(new AdMaiora.AppKit.Data.DataStoragePlatformiOS()); AppController.EnableServices(new AdMaiora.AppKit.Services.ServiceClientPlatformiOS()); // Override point for customization after application launch. // If not required for your application you can safely delete this method return(RegisterMainLauncher(new SplashViewController(), launchOptions)); }