[Xamarin.Android.Tools.AndroidSdk] Sync with .NET 8 versions #223
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Context: dotnet/android#8514
The scenario is as follows:
(3) prompts the user to install Android SDK build-tools 32.0.0 and cmdline-tools 7.0, because Xamarin.Android contains default values of
$(AndroidSdkBuildToolsVersion)=32.0.0 and$(AndroidCommandLineToolsVersion)=7.0.This isn't a blocker; the user need only accept the license and install the downlevel package versions. It's just not ideal.
Update
$(AndroidSdkBuildToolsVersion),$(AndroidCommandLineToolsVersion)and$(AndroidSdkPlatformToolsVersion)to be consistent with .NET 8:$(AndroidCommandLineToolsVersion)/cmdline-tools to 11.0$(AndroidSdkBuildToolsVersion)/build-tools to 34.0.0$(AndroidSdkPlatformToolsVersion)/platform-tools to 34.0.5This ensures that new classic Xamarin.Android projects won't require the installation of additional packages to install.