We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b57c2a2 commit 042547cCopy full SHA for 042547c
app/build.gradle.kts
@@ -395,10 +395,15 @@ sentry {
395
396
autoInstallation {
397
enabled.set(true)
398
- sentryVersion.set("6.25.0")
399
}
400
401
includeDependenciesReport.set(true)
+ includeSourceContext.set(hasSentryConfig)
402
+
403
+ // Includes additional source directories into the source bundle.
404
+ // These directories are resolved relative to the project directory.
405
+ additionalSourceDirsForSourceContext.set(setOf("src/main/java", "src/main/kotlin"))
406
407
408
409
val abiCodes = mapOf("armeabi-v7a" to 1, "x86" to 2, "x86_64" to 3)
0 commit comments