-
Notifications
You must be signed in to change notification settings - Fork 1.8k
[release/10.0.1xx-preview3] Update dependencies from dotnet/android #28663
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
Merged
rmarinho
merged 3 commits into
release/10.0.1xx-preview3
from
darc-release/10.0.1xx-preview3-38f29a96-965f-45c4-82e7-1a2927528c1a
Mar 27, 2025
Merged
[release/10.0.1xx-preview3] Update dependencies from dotnet/android #28663
rmarinho
merged 3 commits into
release/10.0.1xx-preview3
from
darc-release/10.0.1xx-preview3-38f29a96-965f-45c4-82e7-1a2927528c1a
Mar 27, 2025
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
….1xx-preview3-e71524ac874e90d9879661cafe230d8e99ba9cec-1 Microsoft.Android.Sdk.Windows From Version 36.0.0-preview.3.7 -> To Version 36.0.0-preview.3.11
rmarinho
approved these changes
Mar 27, 2025
jonathanpeppers
added a commit
to dotnet/android
that referenced
this pull request
Mar 27, 2025
Context: dotnet/maui#28663 Previously we've been tracking: <!-- Previous .NET Android version --> <Dependency Name="Microsoft.Android.Sdk.Windows" Version="35.0.61"> <Uri>https://github.com/dotnet/android</Uri> <Sha>e7876a4f92d894b40c191a24c2b74f06d4bf4573</Sha> </Dependency> And then for .NET 8, we just manually updated the `$(AndroidNet8PreviousVersion)` property. This makes it difficult for other repositories to *know* about the required NuGet feeds: <!--Begin: Package sources managed by Dependency Flow automation. Do not edit the sources below.--> <!-- Begin: Package sources from dotnet-android --> <add key="darc-pub-dotnet-android-82d8938" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-android-82d8938c/nuget/v3/index.json" /> <add key="darc-pub-dotnet-android-e7876a4" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-android-e7876a4f/nuget/v3/index.json" /> <!-- End: Package sources from dotnet-android --> In dotnet/maui or dotnet/performance, they would need to look at dotnet/android/main's NuGet.config to even figure out what is missing here: Workload installation failed: One or more errors occurred. (Version 35.0.61 of package microsoft.android.sdk.windows is not found in NuGet feeds To solve this, we can track: <!-- Previous .NET Android version(s) --> <Dependency Name="Microsoft.NET.Sdk.Android.Manifest-9.0.100" Version="35.0.61"> <Uri>https://github.com/dotnet/android</Uri> <Sha>e7876a4f92d894b40c191a24c2b74f06d4bf4573</Sha> </Dependency> <Dependency Name="Microsoft.NET.Sdk.Android.Manifest-8.0.100" Version="34.0.154"> <Uri>https://github.com/dotnet/android</Uri> <Sha>82d8938cf80f6d5fa6c28529ddfbdb753d805ab4</Sha> </Dependency> Then consuming repositories could track with `CoherentParentDependency="Microsoft.Android.Sdk.Windows"`: <Dependency Name="Microsoft.Android.Sdk.Windows" Version="36.0.0-preview.3.11"> <Uri>https://github.com/dotnet/android</Uri> <Sha>e71524ac874e90d9879661cafe230d8e99ba9cec</Sha> </Dependency> <Dependency Name="Microsoft.NET.Sdk.Android.Manifest-9.0.100" Version="35.0.61" CoherentParentDependency="Microsoft.Android.Sdk.Windows"> <Uri>https://github.com/dotnet/android</Uri> <Sha>e7876a4f92d894b40c191a24c2b74f06d4bf4573</Sha> </Dependency> <Dependency Name="Microsoft.NET.Sdk.Android.Manifest-8.0.100" Version="34.0.154" CoherentParentDependency="Microsoft.Android.Sdk.Windows"> <Uri>https://github.com/dotnet/android</Uri> <Sha>82d8938cf80f6d5fa6c28529ddfbdb753d805ab4</Sha> </Dependency> Once this change is merged, we would update `eng/Version.Details.xml` in consuming repositories. Afterwards, Maestro should be able to manage the feeds automatically.
jonathanpeppers
added a commit
to dotnet/android
that referenced
this pull request
Mar 27, 2025
Context: dotnet/maui#28663 Previously we've been tracking: <!-- Previous .NET Android version --> <Dependency Name="Microsoft.Android.Sdk.Windows" Version="35.0.61"> <Uri>https://github.com/dotnet/android</Uri> <Sha>e7876a4f92d894b40c191a24c2b74f06d4bf4573</Sha> </Dependency> And then for .NET 8, we just manually updated the `$(AndroidNet8PreviousVersion)` property. This makes it difficult for other repositories to *know* about the required NuGet feeds: <!--Begin: Package sources managed by Dependency Flow automation. Do not edit the sources below.--> <!-- Begin: Package sources from dotnet-android --> <add key="darc-pub-dotnet-android-82d8938" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-android-82d8938c/nuget/v3/index.json" /> <add key="darc-pub-dotnet-android-e7876a4" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-android-e7876a4f/nuget/v3/index.json" /> <!-- End: Package sources from dotnet-android --> In dotnet/maui or dotnet/performance, they would need to look at dotnet/android/main's NuGet.config to even figure out what is missing here: Workload installation failed: One or more errors occurred. (Version 35.0.61 of package microsoft.android.sdk.windows is not found in NuGet feeds To solve this, we can track: <!-- Previous .NET Android version(s) --> <Dependency Name="Microsoft.NET.Sdk.Android.Manifest-9.0.100" Version="35.0.61"> <Uri>https://github.com/dotnet/android</Uri> <Sha>e7876a4f92d894b40c191a24c2b74f06d4bf4573</Sha> </Dependency> <Dependency Name="Microsoft.NET.Sdk.Android.Manifest-8.0.100" Version="34.0.154"> <Uri>https://github.com/dotnet/android</Uri> <Sha>82d8938cf80f6d5fa6c28529ddfbdb753d805ab4</Sha> </Dependency> Then consuming repositories could track with `CoherentParentDependency="Microsoft.Android.Sdk.Windows"`: <Dependency Name="Microsoft.Android.Sdk.Windows" Version="36.0.0-preview.3.11"> <Uri>https://github.com/dotnet/android</Uri> <Sha>e71524ac874e90d9879661cafe230d8e99ba9cec</Sha> </Dependency> <Dependency Name="Microsoft.NET.Sdk.Android.Manifest-9.0.100" Version="35.0.61" CoherentParentDependency="Microsoft.Android.Sdk.Windows"> <Uri>https://github.com/dotnet/android</Uri> <Sha>e7876a4f92d894b40c191a24c2b74f06d4bf4573</Sha> </Dependency> <Dependency Name="Microsoft.NET.Sdk.Android.Manifest-8.0.100" Version="34.0.154" CoherentParentDependency="Microsoft.Android.Sdk.Windows"> <Uri>https://github.com/dotnet/android</Uri> <Sha>82d8938cf80f6d5fa6c28529ddfbdb753d805ab4</Sha> </Dependency> Once this change is merged, we would update `eng/Version.Details.xml` in consuming repositories. Afterwards, Maestro should be able to manage the feeds automatically.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request updates the following dependencies
From https://github.com/dotnet/android