github getsentry/sentry-android-gradle-plugin 6.20.0

4 hours ago

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

Don't miss a new sentry-android-gradle-plugin release

NewReleases is sending notifications on new releases.