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

Commit

Permalink
fix: Match the client's Xamarin.Android.Support.v4 package Android pr…
Browse files Browse the repository at this point in the history
…oject (#198)

The support package used by the client's `.csproj` was a slightly
different version than what is used in the Android test project.

I've matched it to the Android project and the `build_android_and_ios`
succeeds.
  • Loading branch information
cwaldren-ld authored Oct 11, 2023
1 parent 9dca50e commit d1c3c1e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/LaunchDarkly.ClientSdk/LaunchDarkly.ClientSdk.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,13 @@
</Compile>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'monoandroid71'">
<PackageReference Include="Xamarin.Android.Support.v4" Version="28.0.0.3" />
<PackageReference Include="Xamarin.Android.Support.v4" Version="28.0.0.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'monoandroid80'">
<PackageReference Include="Xamarin.Android.Support.v4" Version="28.0.0.3" />
<PackageReference Include="Xamarin.Android.Support.v4" Version="28.0.0.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'monoandroid81'">
<PackageReference Include="Xamarin.Android.Support.v4" Version="28.0.0.3" />
<PackageReference Include="Xamarin.Android.Support.v4" Version="28.0.0.1" />
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<AssemblyOriginatorKeyFile>../../LaunchDarkly.ClientSdk.snk</AssemblyOriginatorKeyFile>
Expand Down

0 comments on commit d1c3c1e

Please sign in to comment.