Skip to content

Commit

Permalink
Disable more sentry features on no properties
Browse files Browse the repository at this point in the history
At some point, Sentry changed behavior where disabling uploads wasn't enough to actually disable all API calls, resulting in build failures when authentication isn't provided 

Signed-off-by: Androidacy Service Account <opensource@androidacy.com>
  • Loading branch information
androidacy-user authored Sep 13, 2023
1 parent 024a50c commit 1d2144d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ sentry {

uploadNativeSymbols.set(hasSentryConfig)

includeNativeSources.set(true)
includeNativeSources.set(hasSentryConfig)

tracingInstrumentation {
enabled.set(true)
Expand All @@ -382,7 +382,7 @@ sentry {
}

includeDependenciesReport.set(true)
includeSourceContext.set(true)
includeSourceContext.set(hasSentryConfig)

// Includes additional source directories into the source bundle.
// These directories are resolved relative to the project directory.
Expand Down Expand Up @@ -543,7 +543,7 @@ android {
}
}

ndkVersion = "26.0.10636728 rc2"
ndkVersion = "25.2.9519653"
dependenciesInfo {
includeInApk = false
includeInBundle = false
Expand Down

0 comments on commit 1d2144d

Please sign in to comment.