Skip to content

Commit 1d2144d

Browse files
Disable more sentry features on no properties
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>
1 parent 024a50c commit 1d2144d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

app/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ sentry {
365365

366366
uploadNativeSymbols.set(hasSentryConfig)
367367

368-
includeNativeSources.set(true)
368+
includeNativeSources.set(hasSentryConfig)
369369

370370
tracingInstrumentation {
371371
enabled.set(true)
@@ -382,7 +382,7 @@ sentry {
382382
}
383383

384384
includeDependenciesReport.set(true)
385-
includeSourceContext.set(true)
385+
includeSourceContext.set(hasSentryConfig)
386386

387387
// Includes additional source directories into the source bundle.
388388
// These directories are resolved relative to the project directory.
@@ -543,7 +543,7 @@ android {
543543
}
544544
}
545545

546-
ndkVersion = "26.0.10636728 rc2"
546+
ndkVersion = "25.2.9519653"
547547
dependenciesInfo {
548548
includeInApk = false
549549
includeInBundle = false

0 commit comments

Comments
 (0)