Enabling tombstone with sentry.maui on android #5022
-
ProblemI'd like to enable the Tombstone integration (Android 12+ native crash reporting The Java SDK (8.32.0+) supports this via What I've tried
ExpectedA property like Environment
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
Thanks for bringing this to our attention. From what I can see, the Sentry Android SDK currently exposes these options:
Exposing a forward for this in the .NET SDK is a great idea. // target: net9.0-android35.0
// target: net10.0-android36.0
namespace Sentry
{
public partial class SentryOptions
{
public class NativeOptions
{
+ public bool TombstoneEnabled { get; set; }
}
}
}@jonathanmourtadahqv. would you mind opening an issue (Feature Request)? |
Beta Was this translation helpful? Give feedback.
Thanks for bringing this to our attention.
And thank you for trying out alternatives / workarounds.
From what I can see, the Sentry Android SDK currently exposes these options:
isReportHistoricalTombstones/setReportHistoricalTombstonesisTombstoneEnabled/setTombstoneEnabledExposing a forward for this in the .NET SDK is a great idea.
Probably - as you mentioned - in the shape of
// target: net9.0-android35.0 // target: net10.0-android36.0 namespace Sentry { public partial class SentryOptions { public class NativeOptions { + public bool TombstoneEnabled { get; set; } } } }@jonathanmourtadahqv. would you mind opening an issue (Feature Request)?