Skip to content
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
4 changes: 2 additions & 2 deletions src/Sentry.Bindings.Android/Sentry.Bindings.Android.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(LatestAndroidTfm);$(PreviousAndroidTfm)</TargetFrameworks>
<SentryAndroidSdkVersion>8.35.0</SentryAndroidSdkVersion>
<SentryAndroidSdkVersion>8.36.0</SentryAndroidSdkVersion>
<SentryAndroidSdkDirectory>$(BaseIntermediateOutputPath)sdks\$(TargetFramework)\Sentry\Android\$(SentryAndroidSdkVersion)\</SentryAndroidSdkDirectory>
<!-- This gets resolved by the DownloadSentryAndroidSdk unless using local maven references -->
<SentryNativeNdkVersion></SentryNativeNdkVersion>
Expand Down Expand Up @@ -123,7 +123,7 @@

<!-- A light-weight replacement for protobuf-javalite (see https://github.com/getsentry/sentry-java/pull/5157) -->
<ItemGroup>
<AndroidMavenLibrary Include="com.abovevacant:epitaph" Version="0.1.0" Bind="false" />
<AndroidMavenLibrary Include="com.abovevacant:epitaph" Version="0.1.1" Bind="false" />
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

question: Breaking Change

Is this a breaking change.
I guess we shouldn't hold off on updating the Java SDK either way,
but perhaps something to note in the CHANGELOG entry.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

Surely an upgrade from 0.1.0 to 0.1.1 wouldn't be a breaking change... unless semver is being ignored completely?

</ItemGroup>

<ItemGroup>
Expand Down
3 changes: 3 additions & 0 deletions src/Sentry.Bindings.Android/Transforms/Metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -169,4 +169,7 @@
<!-- Remove UpdateStatus to avoid CS0108 for conflicting _members fields in nested subclasses -->
<remove-node path="/api/package[@name='io.sentry']/class[@name='UpdateStatus']" />

<!-- Remove SentryShakeDetector to avoid CS8767 nullability mismatch with ISensorEventListener -->
<remove-node path="/api/package[@name='io.sentry.android.core']/class[@name='SentryShakeDetector']" />

</metadata>
Loading