Giancarlo Buenaflor

Results 571 comments of Giancarlo Buenaflor

What approach would be most helpful - having breadcrumbs per log entry (only selected/filtered logs), having logs attached to crashes, or perhaps allowing both options?

@kyze8439690 did you check on which Android versions your code running `logcat` during runtime works? After some checks this only works on API >= 23 and will reject if below...

Our logcat integration only includes creating breadcrumbs out of logs with a specified `minLevel` which you can configure in your `build.gradle` (which also includes logs by third-party libraries since our...

From what I can see I assume `currentRss` and `maxRss` are stable enough to use

We will need to attach the relevant data: - `async` we already do afaik - `thread: main` or `isolate: main` something like that, depending on how the backend handles it...

@daniel-v yeah documenting it sounds good, we have a flutter troubleshooting section at sentry-docs to which we can add the workaround

hey, hm it would seem odd to me to add this to the screenshot integration. we have added a `navigatorKey` option [here](https://github.com/getsentry/sentry-dart/pull/1724) to grab context so we could potentially use...

I guess one con of this is that it is very 'invasive' (lack of better word) for such small use case. @denrase didn't we talk about creating one widget that...

hey! for clarification: both screenshot and user interaction are enabled? Is this reproducable? Is it the same outcome when you do ```dart SentryScreenshotWidget( child: SentryUserInteractionWidget( child: MyApp() ) ); ```...

Is it possible for you to edit `sentry_widget.dart` and see if this fixes the issue: ```dart // rest of the code class _SentryWidgetState extends State { @override Widget build(BuildContext context)...