Hyperion-Xamarin.Android 1.2.1

dotnet add package Hyperion-Xamarin.Android --version 1.2.1
NuGet\Install-Package Hyperion-Xamarin.Android -Version 1.2.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Hyperion-Xamarin.Android" Version="1.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Hyperion-Xamarin.Android --version 1.2.1
#r "nuget: Hyperion-Xamarin.Android, 1.2.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Hyperion-Xamarin.Android as a Cake Addin
#addin nuget:?package=Hyperion-Xamarin.Android&version=1.2.1

// Install Hyperion-Xamarin.Android as a Cake Tool
#tool nuget:?package=Hyperion-Xamarin.Android&version=1.2.1

Once NuGet package is installed, Hyperion is integrated into your app during build. No initialization code needed. It will be started automatically with your app.

Hyperion drawer can be opened from its notification.

By default, Hyperion is included only for Debug configuration. If you want to enable it for other configurations please set $(EnableHyperion) MSBuild property in your .csproj file:

  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    ...
    <EnableHyperion>true</EnableHyperion>
  </PropertyGroup>

ATTENTION! If your app uses a custom Application class, please, add these lines to your AndroidManifest.xml file:

<manifest ... >
	<application ...>
		...
		<service android:name="xamarin.mark.for.MonoRuntimeProvider.generation.crash" android:process=":crash" />
		<service android:name="xamarin.mark.for.MonoRuntimeProvider.generation.phoenix" android:process=":phoenix" />
...

This will help Xamarin.Android build tasks to generate and register MonoRuntimeProviders for processes declared in java libraries. Otherwise Hyperion-Crash and Hyperion-Phoenix plugins will crash due to uninitialized mono runtime in their processes.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.1 560 11/15/2020
1.2.0 454 11/14/2020
1.1.0 477 6/7/2020
1.0.0 429 1/13/2020

* Improve fix of missing services after Xamarin.Android build tasks update. Supports apps with 100+ jars to compile.