diff --git a/src/Grpc.Net.Client/GrpcChannel.cs b/src/Grpc.Net.Client/GrpcChannel.cs
index ea241f193..8ada9df9a 100644
--- a/src/Grpc.Net.Client/GrpcChannel.cs
+++ b/src/Grpc.Net.Client/GrpcChannel.cs
@@ -403,7 +403,7 @@ private HttpMessageInvoker CreateInternalHttpInvoker(HttpMessageHandler? handler
"The channel is configured to use HttpClientHandler and Android's native HTTP/2 library. " +
"gRPC isn't fully supported by Android's native HTTP/2 library and it can cause runtime errors. " +
"To fix this problem, either configure the channel to use SocketsHttpHandler, or add " +
- "true to the app's project file. " +
+ "false to the app's project file. " +
"For more information, see https://aka.ms/aspnet/grpc/android.");
}
}
diff --git a/test/Grpc.Net.Client.Tests/GrpcChannelTests.cs b/test/Grpc.Net.Client.Tests/GrpcChannelTests.cs
index d14b3c967..59d89920e 100644
--- a/test/Grpc.Net.Client.Tests/GrpcChannelTests.cs
+++ b/test/Grpc.Net.Client.Tests/GrpcChannelTests.cs
@@ -433,7 +433,7 @@ public void HttpHandler_HttpClientHandlerOverNativeOnAndroid_ThrowError(bool use
"The channel is configured to use HttpClientHandler and Android's native HTTP/2 library. " +
"gRPC isn't fully supported by Android's native HTTP/2 library and it can cause runtime errors. " +
"To fix this problem, either configure the channel to use SocketsHttpHandler, or add " +
- "true to the app's project file. " +
+ "false to the app's project file. " +
"For more information, see https://aka.ms/aspnet/grpc/android.");
}
finally