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)