InTheHand.AndroidActivity 1.0.4

Prefix Reserved
dotnet add package InTheHand.AndroidActivity --version 1.0.4                
NuGet\Install-Package InTheHand.AndroidActivity -Version 1.0.4                
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="InTheHand.AndroidActivity" Version="1.0.4" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add InTheHand.AndroidActivity --version 1.0.4                
#r "nuget: InTheHand.AndroidActivity, 1.0.4"                
#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 InTheHand.AndroidActivity as a Cake Addin
#addin nuget:?package=InTheHand.AndroidActivity&version=1.0.4

// Install InTheHand.AndroidActivity as a Cake Tool
#tool nuget:?package=InTheHand.AndroidActivity&version=1.0.4                

InTheHand.AndroidActivity

Provides a mechanism to store a reference to the main activity in cross-platform projects

Usage

The library is only required on Android, but can be used by cross-platform libraries such as 32feet.NET in Xamarin or .NET MAUI projects. You need to set the CurrentActivity by assigning it inside your platform-specific MainActivity.cs or similar.

Supported Frameworks

  • Xamarin Forms
  • .NET MAUI
  • Uno Platform
  • Xamarin Android
  • .NET Android (non-MAUI)
  • Avalonia UI

Set the current Activity in your MainActivity OnCreate method:-

protected override void OnCreate(Bundle savedInstanceState)
{
   // provide reference to current activity
   InTheHand.AndroidActivity.CurrentActivity = this;

   base.OnCreate(savedInstanceState);
}

Nuget (with prereleases)

Product Compatible and additional computed target framework versions.
.NET net6.0-android31.0 is compatible.  net7.0-android was computed.  net7.0-android33.0 is compatible.  net8.0-android was computed. 
MonoAndroid monoandroid90 is compatible.  monoandroid10.0 is compatible.  monoandroid11.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • MonoAndroid 10.0

    • No dependencies.
  • MonoAndroid 11.0

    • No dependencies.
  • MonoAndroid 9.0

    • No dependencies.
  • net6.0-android31.0

    • No dependencies.
  • net7.0-android33.0

    • No dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on InTheHand.AndroidActivity:

Package Downloads
InTheHand.Net.Bluetooth

32feet.NET is an open-source project to make personal area networking technologies such as Bluetooth easily accessible from .NET code.

InTheHand.BluetoothLE

32feet.NET is an open-source project to make personal area networking technologies such as Bluetooth easily accessible from .NET code.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on InTheHand.AndroidActivity:

Repository Stars
inthehand/32feet
Personal Area Networking for .NET. Open source and professionally supported
Version Downloads Last updated
1.0.4 7,619 8/10/2023
1.0.3 929 5/29/2023
1.0.1 4,557 3/3/2023

Improved instructions for MainActivity OnCreate.