From 4a49f6b13ede9caf0950313c9284fb4963888b57 Mon Sep 17 00:00:00 2001 From: Matt Chowning Date: Tue, 11 Oct 2022 15:48:05 -0400 Subject: [PATCH 1/2] Turn off Sentry's file IO tracing --- app/build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/build.gradle b/app/build.gradle index 96b974bebc4..8040cf695be 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,3 +1,5 @@ +import io.sentry.android.gradle.extensions.InstrumentationFeature + plugins { id 'io.sentry.android.gradle' } @@ -66,6 +68,12 @@ android { } } +sentry { + tracingInstrumentation { + features = EnumSet.allOf(InstrumentationFeature) - InstrumentationFeature.FILE_IO + } +} + dependencies { implementation project(':modules:services:localization') implementation project(':modules:services:preferences') From 490576d2b2d317dcd1c2ce9fcee7785e38ef0fa0 Mon Sep 17 00:00:00 2001 From: Matt Chowning Date: Tue, 11 Oct 2022 16:30:42 -0400 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa10f08b0b8..6ed3d84127a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ ([#342](https://github.com/Automattic/pocket-casts-android/pull/342)). * Add a helpful alert if the user is signed out in the background. ([#340](https://github.com/Automattic/pocket-casts-android/pull/340)). + * Fix in-app logs not updating appropriately. + * ([#395](https://github.com/Automattic/pocket-casts-android/pull/395)). * Health: * Migrate app to Android 13 by targeting the SDK version 33. ([#312](https://github.com/Automattic/pocket-casts-android/pull/312)).