Hyperion-Xamarin.Android
1.1.0
See the version list below for details.
dotnet add package Hyperion-Xamarin.Android --version 1.1.0
NuGet\Install-Package Hyperion-Xamarin.Android -Version 1.1.0
<PackageReference Include="Hyperion-Xamarin.Android" Version="1.1.0" />
paket add Hyperion-Xamarin.Android --version 1.1.0
#r "nuget: Hyperion-Xamarin.Android, 1.1.0"
// Install Hyperion-Xamarin.Android as a Cake Addin #addin nuget:?package=Hyperion-Xamarin.Android&version=1.1.0 // Install Hyperion-Xamarin.Android as a Cake Tool #tool nuget:?package=Hyperion-Xamarin.Android&version=1.1.0
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" android:process=":crash" />
<service android:name="xamarin.mark.for.MonoRuntimeProvider.generation" 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.
Learn more about Target Frameworks and .NET Standard.
-
MonoAndroid 0.0
- Xamarin.Android.Support.Design (>= 28.0.0.3)
- Xamarin.Google.Dagger (>= 2.25.2.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
* Hyperion modules updated to version `0.9.28-SNAPSHOT`.
The main reason for using a snapshot version is a fix of annoying background shake activation.
* Returned support for separate processes in Crash and Phoenix plugins.
See README for instructions to workaround a bug of multiprocess MonoRuntimeProvider generation for a custom Application class.