Skip to content

Commit 48e79fd

Browse files
authored
Disable enableUserInteractionBreadcrumbs on Android when enableAutoNativeBreadcrumbs is disabled (#1131)
1 parent a45b9ed commit 48e79fd

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

CHANGELOG.md

+13-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
# Changelog
22

3+
## Unreleased
4+
5+
### Fixes
6+
7+
- Disable `enableUserInteractionBreadcrumbs` on Android when `enableAutoNativeBreadcrumbs` is disabled ([#1131](https://github.com/getsentry/sentry-dart/pull/1131))
8+
39
## 6.15.1
410

5-
### Various fixes & improvements
11+
### Dependencies
612

7-
- chore(deps): update Flutter SDK (metrics) to v3.3.8 (#1121) by @github-actions
13+
- Bump Cocoa SDK from v7.30.1 to v7.30.2 ([#1113](https://github.com/getsentry/sentry-dart/pull/1113))
14+
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/master/CHANGELOG.md#7302)
15+
- [diff](https://github.com/getsentry/sentry-cocoa/compare/7.30.1...7.30.2)
816

917
## 6.15.0
1018

@@ -24,9 +32,9 @@
2432
- Bump Android SDK from v6.6.0 to v6.7.0 ([#1105](https://github.com/getsentry/sentry-dart/pull/1105))
2533
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#670)
2634
- [diff](https://github.com/getsentry/sentry-java/compare/6.6.0...6.7.0)
27-
- Bump Cocoa SDK from v7.30.0 to v7.30.2 ([#1113](https://github.com/getsentry/sentry-dart/pull/1113))
28-
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/master/CHANGELOG.md#7302)
29-
- [diff](https://github.com/getsentry/sentry-cocoa/compare/7.30.0...7.30.2)
35+
- Bump Cocoa SDK from v7.30.0 to v7.30.1 ([#1104](https://github.com/getsentry/sentry-dart/pull/1104))
36+
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/master/CHANGELOG.md#7301)
37+
- [diff](https://github.com/getsentry/sentry-cocoa/compare/7.30.0...7.30.1)
3038

3139
## 6.14.0
3240

flutter/android/src/main/kotlin/io/sentry/flutter/SentryFlutterPlugin.kt

+1
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ class SentryFlutterPlugin : FlutterPlugin, MethodCallHandler, ActivityAware {
131131
options.isEnableAppLifecycleBreadcrumbs = it
132132
options.isEnableSystemEventBreadcrumbs = it
133133
options.isEnableAppComponentBreadcrumbs = it
134+
options.isEnableUserInteractionBreadcrumbs = it
134135
}
135136
args.getIfNotNull<Int>("maxBreadcrumbs") { options.maxBreadcrumbs = it }
136137
args.getIfNotNull<Int>("maxCacheItems") { options.maxCacheItems = it }

0 commit comments

Comments
 (0)