xamarin-android-tools is a repo to easily share code between the xamarin-android repo and the Xamarin.Android commercial tooling, such as IDE extensions, without requiring that the IDE extensions submodule the entire xamarin-android repo, which is gigantic.
Platform | Status |
---|---|
macOS | |
Windows |
xamarin-android-tools requires Mono 4.8 or later and nuget
.
The default make all
target accepts the following optional
make(1) variables:
$(CONFIGURATION)
: The configuration to build. Possible values includeDebug
andRelease
. The default value isDebug
.$(V)
: Controls build verbosity. When set to a non-zero value, The build is built with/v:diag
logging.
To build xamarin-android-tools, first prepare the project:
make prepare
This will perform nuget restore
and any other pre-build tasks
that need to be performed.
Next, run make
:
make
To run the unit tests:
make run-all-tests
There are two configurations, Debug
and Release
, controlled by the
$(Configuration)
MSBuild property or the $(CONFIGURATION)
make variable.
The bin\$(Configuration)
directory, e.g. bin\Debug
, contains
redistributable artifacts. The bin\Test$(Configuration)
directory,
e.g. bin\TestDebug
, contains unit tests and related files.
bin\$(Configuration)
: redistributable build artifacts.bin\Test$(Configuration)
: Unit tests and related files.
Package versioning follows Semantic Versioning 2.0.0.
The major version in the nuget.version
file should be updated when a breaking change is introduced.
The minor version should be updated when new functionality is added.
The patch version will be automatically determined by the number of commits since the last version change.
This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community. For more information, see the .NET Foundation Code of Conduct.
Xamarin.Android.Tools.AndroidSdk nupkg files are produced for every build which occurrs on Azure Devops.
To download one of these packages, navigate to the build you are interested in and click on the Artifacts
button.
Alternatively, "unofficial" releases are currently hosted on MyGet.
Add the feed to your project's NuGet.config
to reference these packages:
<configuration>
<packageSources>
<add
key="xamarin-android"
value="https://www.myget.org/F/xamarin-android/api/v3/index.json"
/>
</packageSources>
</configuration>
To discuss this project, and participate in the design, we use the [email protected] mailing list.
We use Mono's Coding Guidelines.
We use GitHub to track issues.