Skip to content
Draft
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
4 changes: 2 additions & 2 deletions src/Sentry.Bindings.Android/Sentry.Bindings.Android.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@
<!-- We have a dependency on 1.9.24 from here:
https://github.com/getsentry/sentry-java/blob/604a2616bebd80ea051cdcec916aa052b509c5a8/buildSrc/src/main/java/Config.kt#L6-L7
... but there's no NuGet package for that version. This version has been selected to
match the version that was available when net10.0-rc1 was released -->
<PackageReference Include="Xamarin.Kotlin.StdLib.Jdk8" Version="2.2.10" />
match the version that was available when net10.0 was released -->
<PackageReference Include="Xamarin.Kotlin.StdLib.Jdk8" Version="2.2.21" />
</ItemGroup>

<!-- Dependencies for AndroidMavenLibrary references
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.3.2"/>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0"/>
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This bumps to the latest version of CommunityToolkit.Mvvm... typically we target the oldest version possible but CommunityToolkit.Mvvm has shared Java dependencies with Maui and also with some of the transitive dependencies we take through the Sentry SDK for Java. So for this particular integration, our approach has been to keep it as up to date as possible (as long as that isn't incompatible with either the versions of net-android we target or the dependencies we get via the Sentry SDK for Java).

</ItemGroup>

<ItemGroup>
Expand Down
Loading