From 489f484e1111b158e12e8395a0390e39f17b7b6f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 13 Jul 2026 20:01:04 +0000 Subject: [PATCH 1/3] Initial plan From 4a5a8c748ce4484789fe6671968180b4eb0b4b65 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 13 Jul 2026 20:34:31 +0000 Subject: [PATCH 2/3] Fix Android dependency install retry Co-authored-by: simonrozsival <374616+simonrozsival@users.noreply.github.com> --- .../Xamarin.Android.Build.Tests/AndroidDependenciesTests.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/AndroidDependenciesTests.cs b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/AndroidDependenciesTests.cs index 3411d6b3d96..e6d40e10df5 100644 --- a/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/AndroidDependenciesTests.cs +++ b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/AndroidDependenciesTests.cs @@ -63,6 +63,7 @@ public void InstallAndroidDependenciesTest ([Values ("GoogleV2", "Xamarin")] str using (var b = CreateApkBuilder ()) { b.Verbosity = LoggerVerbosity.Detailed; b.CleanupAfterSuccessfulBuild = false; + b.ThrowOnBuildFailure = false; string defaultTarget = b.Target; b.Target = "InstallAndroidDependencies"; b.BuildLogFile = "install-deps.log"; From 29c22b9350dfc1db7d90ab35e4bdd6c20bae7f32 Mon Sep 17 00:00:00 2001 From: Jonathan Peppers Date: Mon, 20 Jul 2026 09:16:35 -0500 Subject: [PATCH 3/3] Re-enable InstallAndroidDependenciesTest Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: e0993a88-da38-49ca-b07c-207f4f3d470c --- .../Xamarin.Android.Build.Tests/AndroidDependenciesTests.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/AndroidDependenciesTests.cs b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/AndroidDependenciesTests.cs index e6d40e10df5..fe60dadda8a 100644 --- a/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/AndroidDependenciesTests.cs +++ b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/AndroidDependenciesTests.cs @@ -19,7 +19,6 @@ namespace Xamarin.Android.Build.Tests public class AndroidDependenciesTests : BaseTest { [Test] - [Ignore ("Flaky test that intermittently fails when downloading the Android SDK/JDK over the network in CI. See: https://github.com/dotnet/android/issues/11973")] [NonParallelizable] // Do not run environment modifying tests in parallel. public void InstallAndroidDependenciesTest ([Values ("GoogleV2", "Xamarin")] string manifestType, [Values (AndroidRuntime.CoreCLR, AndroidRuntime.NativeAOT)] AndroidRuntime runtime) {