Skip to content

Commit f237379

Browse files
lbloderadinauer
andauthored
Remove enable tracing from android sample manifest (#3792)
Co-authored-by: Alexander Dinauer <[email protected]>
1 parent 5d921a5 commit f237379

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

sentry-samples/sentry-samples-android/src/main/AndroidManifest.xml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,15 +105,14 @@
105105
<!-- how to change the session tracking interval-->
106106
<meta-data android:name="io.sentry.session-tracking.timeout-interval-millis" android:value="10000" />
107107

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

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

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

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

0 commit comments

Comments
 (0)