Skip to content

.NET 10 GA, Android 36.1.2

Latest

Choose a tag to compare

@jonathanpeppers jonathanpeppers released this 11 Nov 19:04
· 50 commits to main since this release

The latest .NET MAUI component is available in Visual Studio 2026 or higher:

image

You can also download the .NET 10 SDK directly, followed by:

> dotnet workload install android --version 10.0.100.1
...
Successfully installed workload(s) android.

To verify installation:

> dotnet workload list

Installed Workload Id      Manifest Version                            Installation Source
--------------------------------------------------------------------------------------------
android                    36.1.2/10.0.100                             SDK 10.0.100

Android 36.1

To try out the new APIs, you can opt your project into the new net10.0-android36.1 target framework:

<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    <TargetFramework>net10.0-android36.1</TargetFramework>
    <!-- Remainder of your .csproj -->

Note that if omitted, net10.0-android will default to API 36.0.

To use an Android 36.1-only API you can use the OperatingSystem class to check the Android version at runtime:

if (OperatingSystem.IsAndroidVersionAtLeast(36, 1))
{
    // Call some Android 36.1 API here
}
else
{
	// Fallback for older OS versions
	ShowToast("Android 36.1+ is required for this feature");
}

See the Android documentation for a full diff of the new available APIs in Android 36.1.

For a full sample using Android 36.1 APIs, see our Pdf Annotator sample on GitHub.

To install the Android 36.1 platform, you can go to Tools > Android > Android SDK Manager. Install Android SDK Platform 36.1.

TLDR

For a short list of Android features in .NET 10, see:

What's Changed

Full Changelog: 36.0.0-rc.2.332...36.1.2