Skip to content
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.

fix: updating deprecated AndroidClientHandler to AndroidMessageHandler #69

Merged
merged 5 commits into from
Dec 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/actions/publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ runs:
if: ${{ inputs.dry_run == 'false' }}
shell: bash
run: |
for pkg in $(find ./src/LaunchDarkly.ClientSdk/bin/Release -name '*.nupkg' -o -name '*.snupkg'); do
echo "publishing $pkg"
dotnet nuget push "$pkg" -ApiKey ${{ env.NUGET_API_KEY }} -Source https://www.nuget.org
for pkg in $(find ./nupkgs -name '*.nupkg' -o -name '*.snupkg'); do
echo "publishing ${pkg}"
dotnet nuget push "${pkg}" -ApiKey ${{ env.NUGET_API_KEY }} -Source https://www.nuget.org
echo "published $pkg"
done
2 changes: 1 addition & 1 deletion src/LaunchDarkly.ClientSdk/LaunchDarkly.ClientSdk.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>5.0.0-alpha.1</Version>
<Version>5.0.0-alpha.2</Version>
<!-- The BUILDFRAMEWORKS variable allows us to override the target frameworks in
a situation where we need to build only the .NET Standard target and do not
want to even mention the Android/iOS/Mac/Windows targets, because we're in an environment
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ private static Func<HttpProperties, HttpMessageHandler> PlatformGetHttpMessageHa
TimeSpan connectTimeout,
IWebProxy proxy
) =>
p => new AndroidClientHandler()
p => new AndroidMessageHandler()
{
ConnectTimeout = connectTimeout,
Proxy = proxy
Expand Down
Loading