-
-
Notifications
You must be signed in to change notification settings - Fork 221
ignore Android binding warnings #4423
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
8e48a42
36f2d4c
6ccdbc5
3537c94
bfc03d9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,18 @@ | |
<!-- This gets resolved by the DownloadSentryAndroidSdk target --> | ||
<SentryNativeNdkVersion></SentryNativeNdkVersion> | ||
<Description>.NET Bindings for the Sentry Android SDK</Description> | ||
|
||
<!-- Android binding warnings - these are largely unavoidable due to Java interface circular dependencies --> | ||
<!-- Only suppress warnings that are confirmed to be expected/unavoidable --> | ||
<!-- BG8801: Invalid parameter types - caused by circular interface dependencies in Sentry Java SDK --> | ||
<!-- BG8C01: Invalid base interface - interfaces reference types removed by Metadata.xml --> | ||
<!-- BG8701: Invalid return types - return types reference unresolvable interfaces --> | ||
<!-- BG8800/BG8700: Unknown/Invalid types - types intentionally removed by Metadata.xml --> | ||
<!-- BG8605/BG8606: Missing Java types - Compose UI types not available in our binding context --> | ||
<!-- BG8604: Missing ancestor types - nested types whose parents are removed --> | ||
<!-- BG8502: Interface invalidation - cascade effect from other binding issues --> | ||
bruno-garcia marked this conversation as resolved.
Show resolved
Hide resolved
|
||
<!-- BG8401/BG8400: Field/property conflicts - resolved individually in Metadata.xml where needed --> | ||
<NoWarn>$(NoWarn);BG8801;BG8C01;BG8701;BG8800;BG8700;BG8605;BG8606;BG8604;BG8502;BG8401;BG8400;BG8503;BG8C00</NoWarn> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. suggestion: also mention There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What should I add as a comment? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was thinking about a short description of these warning for completeness. I added (non-blocking) suggestions.
bruno-garcia marked this conversation as resolved.
Show resolved
Hide resolved
|
||
</PropertyGroup> | ||
|
||
<!-- Use a separate readme, and don't add the changelog to the nuget. --> | ||
|
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Invalid parameter/return types are
BG8801
/BG8701
.