/hostly

.Net Core host style builder for Xamarin apps.

Primary LanguageC#MIT LicenseMIT

hostly

Hostly

A .Net Core host style builder for Xamarin apps.

Build

Quickstart

See the Wiki for full documentation.

Install Packages

  1. Install Hostly
Install-Package Hostly -Version 1.1.2
  1. Install platform specific package

For Android:

Install-Package Hostly.Android -Version 1.1.2

For iOS:

Install-Package Hostly.iOS -Version 1.1.2

Run the Xamarin host builder in your activity (Android) Or app delegate (iOS):

new XamarinHostBuilder()
                .UseApplication<App>()
                .UseStartup<Startup>()
                .UsePlatform(this)
                .Build()
                .StartAsync().Wait();