From 6886fae0010818ac4d17bd14a01a7b89845a972c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 23 Jun 2026 02:32:16 +0000 Subject: [PATCH 1/2] Initial plan From 8c33f16039800660d55833b62b34e7ac1998827e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 23 Jun 2026 02:52:19 +0000 Subject: [PATCH 2/2] Enable nullable reference types in WaitForAppDetection.cs Co-authored-by: jonathanpeppers <840039+jonathanpeppers@users.noreply.github.com> --- .../Tasks/WaitForAppDetection.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Xamarin.Android.Build.Debugging.Tasks/Tasks/WaitForAppDetection.cs b/src/Xamarin.Android.Build.Debugging.Tasks/Tasks/WaitForAppDetection.cs index b4a4f11629a..13c878806fd 100644 --- a/src/Xamarin.Android.Build.Debugging.Tasks/Tasks/WaitForAppDetection.cs +++ b/src/Xamarin.Android.Build.Debugging.Tasks/Tasks/WaitForAppDetection.cs @@ -1,3 +1,4 @@ +#nullable enable using System; using System.Collections.Generic; using System.IO; @@ -13,7 +14,7 @@ public class WaitForAppDetection : AsyncTask { public override string TaskPrefix => "WFAD"; - System.Threading.Tasks.Task> getPackagesAsync; + System.Threading.Tasks.Task>? getPackagesAsync; public override bool Execute () {