From 3e224c946230eb9c4e139e92edc0549fba3151a1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 28 Jun 2026 02:40:02 +0000 Subject: [PATCH 1/2] Initial plan From b9ccfef21243fae68a9c0b1f0123d4d2e98965c6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 28 Jun 2026 03:07:31 +0000 Subject: [PATCH 2/2] [Mono.AndroidTools] Enable NRT in AdbSyncNotification.cs Co-authored-by: jonathanpeppers <840039+jonathanpeppers@users.noreply.github.com> --- src/Mono.AndroidTools/Adb/AdbSyncNotification.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Mono.AndroidTools/Adb/AdbSyncNotification.cs b/src/Mono.AndroidTools/Adb/AdbSyncNotification.cs index e2e38b0d2dc..8de1aad0238 100644 --- a/src/Mono.AndroidTools/Adb/AdbSyncNotification.cs +++ b/src/Mono.AndroidTools/Adb/AdbSyncNotification.cs @@ -1,3 +1,4 @@ +#nullable enable // // AdbSyncNotification.cs // @@ -33,7 +34,7 @@ namespace Mono.AndroidTools.Adb /// public class AdbSyncNotification { - public AdbSyncNotification (AdbSyncKind kind, string remotePath, string localPath, long size) + public AdbSyncNotification (AdbSyncKind kind, string remotePath, string? localPath, long size) { this.Kind = kind; this.RemotePath = remotePath; @@ -43,7 +44,7 @@ public AdbSyncNotification (AdbSyncKind kind, string remotePath, string localPat public AdbSyncKind Kind { get; private set; } public string RemotePath { get; private set; } - public string LocalPath { get; private set; } + public string? LocalPath { get; private set; } public long Size { get; private set; } public string GetMessage ()