From 70bdbd73d297fff30cead57c5d932ece5401a144 Mon Sep 17 00:00:00 2001 From: Nelson Osacky Date: Wed, 15 Jul 2026 13:36:45 +0200 Subject: [PATCH] feat(samples): Enable Sentry Logs in the Android sample app The Android sample already emits structured logs via Sentry.logger() in MainActivity.onCreate, but they were silently dropped because the Logs feature is disabled by default. Enable it through the manifest so the sample demonstrates the logging feature out of the box. Co-Authored-By: Claude Opus 4.8 (1M context) --- .../sentry-samples-android/src/main/AndroidManifest.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sentry-samples/sentry-samples-android/src/main/AndroidManifest.xml b/sentry-samples/sentry-samples-android/src/main/AndroidManifest.xml index 61f4df5b8d..9a079a2663 100644 --- a/sentry-samples/sentry-samples-android/src/main/AndroidManifest.xml +++ b/sentry-samples/sentry-samples-android/src/main/AndroidManifest.xml @@ -130,6 +130,11 @@ android:name="io.sentry.debug" android:value="${sentryDebug}" /> + + +