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
<PackageReference Include="Hyperion-Xamarin.Android" Version="1.2.1" />
paket add Hyperion-Xamarin.Android --version 1.2.1
#r "nuget: Hyperion-Xamarin.Android, 1.2.1"
// 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.
Learn more about Target Frameworks and .NET Standard.
-
MonoAndroid 0.0
- Xamarin.AndroidX.AppCompat (>= 1.2.0.5)
- Xamarin.AndroidX.RecyclerView (>= 1.1.0.5)
- Xamarin.AndroidX.SlidingPaneLayout (>= 1.1.0)
- Xamarin.AndroidX.SwipeRefreshLayout (>= 1.1.0)
- Xamarin.Google.Android.Material (>= 1.1.0.5)
- 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.
* Improve fix of missing services after Xamarin.Android build tasks update. Supports apps with 100+ jars to compile.