Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions Documentation/docs-mobile/building-apps/build-properties.md
Original file line number Diff line number Diff line change
Expand Up @@ -766,6 +766,18 @@ installation of the Java SDK when running the `<InstallAndroidDependencies/>` ta

Support for this property was added in .NET 9.

## AndroidInstrumentation

A string property that specifies the Android
[instrumentation](https://developer.android.com/reference/android/app/Instrumentation)
runner class name to use when launching the application via `dotnet run`.

When [`$(EnableMSTestRunner)`](#enablemstestrunner) is `true` and this property
is not set, the instrumentation runner class name is automatically resolved from
the generated `AndroidManifest.xml` in the intermediate output.

Introduced in .NET 11.

## AndroidJavadocVerbosity

Specifies how "verbose"
Expand Down Expand Up @@ -1669,6 +1681,18 @@ This property is `False` by default.
This property is ignored unless the
[`$(AotAssemblies)`](#aotassemblies) MSBuild property is `True`.

## EnableMSTestRunner

A boolean property that enables the
[MSTest runner](https://learn.microsoft.com/dotnet/core/testing/unit-testing-mstest-running-tests)
for Android test projects. When set to `true`, `dotnet run` will launch the
application via `am instrument` instead of `am start`, allowing test results
to be reported through Android's instrumentation protocol.

This property is `False` by default.

Introduced in .NET 11.

## EnableProguard

A boolean property that determines
Expand Down