A .Net Core host style builder for Xamarin apps.
See the Wiki for full documentation.
- Install Hostly
Install-Package Hostly -Version 1.1.2
- 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();