Skip to content

Commit

Permalink
Remove enable tracing from android sample manifest (#3792)
Browse files Browse the repository at this point in the history
Co-authored-by: Alexander Dinauer <adinauer@users.noreply.github.com>
  • Loading branch information
lbloder and adinauer authored Oct 15, 2024
1 parent 5d921a5 commit f237379
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,14 @@
<!-- how to change the session tracking interval-->
<meta-data android:name="io.sentry.session-tracking.timeout-interval-millis" android:value="10000" />

<!-- how to enable the performance API by either enabling tracing or setting a sample-rate-->
<meta-data android:name="io.sentry.traces.enable" android:value="true" />
<!-- how to set custom sample rate different from the default 1.0 -->
<!-- <meta-data android:name="io.sentry.traces.sample-rate" android:value="0.8" /> -->
<!-- how to enable the performance API by setting a sample-rate (0.0 to 1.0) -->
<!-- a sample-rate of 0.0 will disable the performance API -->
<meta-data android:name="io.sentry.traces.sample-rate" android:value="1.0" />

<!-- how to enable profiling when starting transactions -->
<meta-data android:name="io.sentry.traces.profiling.sample-rate" android:value="1.0" />

<!-- how to enable app start profiling -->
<!-- how to enable app start profiling -->
<meta-data android:name="io.sentry.traces.profiling.enable-app-start" android:value="true" />

<!-- how to disable the Activity auto instrumentation for tracing-->
Expand Down

0 comments on commit f237379

Please sign in to comment.