Skip to content

Commit

Permalink
Merge pull request #395 from Automattic/fix/sentry-file-io-breakage
Browse files Browse the repository at this point in the history
Turn off Sentry's file IO tracing
  • Loading branch information
ashiagr authored Oct 12, 2022
2 parents 05cc441 + 490576d commit 82a380e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)).
Expand Down
8 changes: 8 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import io.sentry.android.gradle.extensions.InstrumentationFeature

plugins {
id 'io.sentry.android.gradle'
}
Expand Down Expand Up @@ -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')
Expand Down

0 comments on commit 82a380e

Please sign in to comment.