Description
Create transactions/spans for @Composable functions annotated with @SentryTraceable, so we can enrich events that pop up within that composable lifetime. The code to measure that could roughly look like this:
DisposableEffect(Unit) {
Log.e("SENTRY", "ENTERED COMPOSITION")
onDispose {
Log.e("SENTRY", "LEFT COMPOSITION")
}
}
Would require bytecode manipulation through SAGP.
Description
Create transactions/spans for
@Composablefunctions annotated with@SentryTraceable, so we can enrich events that pop up within that composable lifetime. The code to measure that could roughly look like this:Would require bytecode manipulation through SAGP.