Skip to content

6.20.0

Latest

Choose a tag to compare

@sentry-release-bot sentry-release-bot released this 27 Aug 13:24

Features

  • Allow per-variant overrides for tracing instrumentation and runtime optimizations via reverse DSL (#1420)
    • This allows you to enable and disable features per variant.
    sentry {
      tracingInstrumentation { enabled.set(false) }
    
      variants {
        create("debug") {
          tracingInstrumentation { enabled.set(true) }
          runtimeOptimizations { enabled.set(true) }
        }
      }
    }

Fixes

  • Avoid resolving the runtime classpath during Gradle configuration when SDK runtime optimizations are enabled (#1404)

Performance

  • Resolve Sentry manifest metadata at build time to reduce Android SDK initialization overhead (#1405)

Dependencies