From 2f8f173887b79d93ccc79d99528b682f218dbe2a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 25 Oct 2022 15:49:45 +0200 Subject: [PATCH] chore(deps): update Android SDK to v6.6.0 (#1090) Co-authored-by: Manoel Aranda Neto Co-authored-by: GitHub Co-authored-by: Manoel Aranda Neto <5731772+marandaneto@users.noreply.github.com> Co-authored-by: Markus Hintersteiner --- CHANGELOG.md | 8 ++++++++ flutter/android/build.gradle | 2 +- .../main/kotlin/io/sentry/flutter/SentryFlutterPlugin.kt | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c54f90a1f..76bb083f30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## Unreleased + +### Dependencies + +- Bump Android SDK from v6.5.0 to v6.6.0 ([#1090](https://github.com/getsentry/sentry-dart/pull/1090)) + - [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#660) + - [diff](https://github.com/getsentry/sentry-java/compare/6.5.0...6.6.0) + ## 6.13.1 ### Fixes diff --git a/flutter/android/build.gradle b/flutter/android/build.gradle index bd7b40eaa5..5f3c1c13e3 100644 --- a/flutter/android/build.gradle +++ b/flutter/android/build.gradle @@ -54,6 +54,6 @@ android { } dependencies { - api 'io.sentry:sentry-android:6.5.0' + api 'io.sentry:sentry-android:6.6.0' implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" } diff --git a/flutter/android/src/main/kotlin/io/sentry/flutter/SentryFlutterPlugin.kt b/flutter/android/src/main/kotlin/io/sentry/flutter/SentryFlutterPlugin.kt index da2abe9db0..ebdcd7cb5e 100644 --- a/flutter/android/src/main/kotlin/io/sentry/flutter/SentryFlutterPlugin.kt +++ b/flutter/android/src/main/kotlin/io/sentry/flutter/SentryFlutterPlugin.kt @@ -157,7 +157,7 @@ class SentryFlutterPlugin : FlutterPlugin, MethodCallHandler, ActivityAware { args.getIfNotNull("enableAutoPerformanceTracking") { enableAutoPerformanceTracking -> if (enableAutoPerformanceTracking) { autoPerformanceTrackingEnabled = true - framesTracker = ActivityFramesTracker(LoadClass()) + framesTracker = ActivityFramesTracker(LoadClass(), options) } }