Requested by: @markushi
Merge target: (default)
Quick links:
Assign the accepted label to this issue to approve the release.
Targets
Checked targets will be skipped (either already published or user-requested skip). Uncheck to retry a target.
📋 Changelog
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
- Bump ComposablePreviewScanner from v0.9.2 to v0.9.3 (#1408)
- Bump Android SDK from v8.53.0 to v8.54.0 (#1421)
Requested by: @markushi
Merge target: (default)
Quick links:
Assign the accepted label to this issue to approve the release.
Targets
Checked targets will be skipped (either already published or user-requested skip). Uncheck to retry a target.
📋 Changelog
Features
sentry { tracingInstrumentation { enabled.set(false) } variants { create("debug") { tracingInstrumentation { enabled.set(true) } runtimeOptimizations { enabled.set(true) } } } }Fixes
Performance
Dependencies