-
Notifications
You must be signed in to change notification settings - Fork 4
Getting started
Matt Hope edited this page May 30, 2020
·
4 revisions
- 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();
Please install all of the packages described below
Hostly NuGet link
This is the core package and is necessary on any Xamarin app.
Install-Package Hostly -Version 1.1.2
dotnet add package Hostly -Version 1.1.2
<PackageReference Include="Hostly" Version="1.1.2" />
paket add Hostly --version 1.1.2
Hostly.Android NuGet link
This is the Android platform specific package and is necessary for any Android apps
Install-Package Hostly.Android -Version 1.1.2
dotnet add package Hostly.Android -Version 1.1.2
<PackageReference Include="Hostly.Android" Version="1.1.2" />
paket add Hostly.Android --version 1.1.2
Hostly.iOS NuGet link
This is the iOS platform specific package and is necessary for any iOS apps
Install-Package Hostly.iOS -Version 1.1.2
dotnet add package Hostly.iOS -Version 1.1.2
<PackageReference Include="Hostly.iOS" Version="1.1.2" />
paket add Hostly.iOS --version 1.1.2