Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Android tooling defaults to latest versions in MSBuild #1266

Closed
JonDouglas opened this issue Feb 1, 2018 · 1 comment · Fixed by #1273
Closed

Bump Android tooling defaults to latest versions in MSBuild #1266

JonDouglas opened this issue Feb 1, 2018 · 1 comment · Fixed by #1273
Labels
Area: App+Library Build Issues when building Library projects or Application projects.

Comments

@JonDouglas
Copy link
Contributor

There are three Android SDK version MSBuild properties that we should bump in Xamarin.Android.Common.targets:

  • $(AndroidSdkBuildToolsVersion)
  • $(AndroidSdkPlatformToolsVersion)
  • $(AndroidSdkToolsVersion)

Here are the current defaults:

<AndroidSdkBuildToolsVersion Condition="'$(AndroidSdkBuildToolsVersion)' == ''">23.0.0</AndroidSdkBuildToolsVersion>
<AndroidSdkPlatformToolsVersion Condition="'$(AndroidSdkPlatformToolsVersion)' == ''">25.0.5</AndroidSdkPlatformToolsVersion>
<AndroidSdkToolsVersion Condition="'$(AndroidSdkToolsVersion)' == ''">25.2.5</AndroidSdkToolsVersion>

Here is the latest versions as of Android 8.1:

  • build-tools: 27.0.3
  • platform-tools: 27.0.1
  • sdk tools: 26.1.1

Currently there are some scenarios in which these defaults get picked up and used within various CI / CD services such as AppCenter. Instead of picking up old values, we should set these to be more recent.

@JonDouglas JonDouglas added the Area: App+Library Build Issues when building Library projects or Application projects. label Feb 1, 2018
@pjcollins
Copy link
Member

A duplicate concern related to build tools version was discussed in https://bugzilla.xamarin.com/show_bug.cgi?id=60915. I will close that bugzilla issue as this item is now being tracked here.

@ghost ghost locked as resolved and limited conversation to collaborators Jun 9, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Area: App+Library Build Issues when building Library projects or Application projects.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants