diff --git a/docs/platforms/godot/configuration/options.mdx b/docs/platforms/godot/configuration/options.mdx
index 8c2acb0f7cf9af..bb700c7449694a 100644
--- a/docs/platforms/godot/configuration/options.mdx
+++ b/docs/platforms/godot/configuration/options.mdx
@@ -134,7 +134,7 @@ If `true`, enables automatic detection and reporting of application hangs. The S
-This feature is only supported on Android, iOS, and macOS platforms.
+This feature applies to iOS and macOS only. On Android, ANR (Application Not Responding) detection is configured separately — see [`android.enable_anr_detection`](#android.enable_anr_detection).
@@ -267,6 +267,36 @@ This option contains multiple properties that govern the behavior of throttling.
+## Android Options
+
+These options configure Android-specific behavior, such as ANR (Application Not Responding) detection. Set them programmatically through `options.android`, or in the **Project Settings** under **Sentry > Android > Application Not Responding**.
+
+
+
+If `true`, detects and reports ANR (Application Not Responding) errors. The SDK monitors the main thread for unresponsiveness and reports an event when an ANR occurs.
+
+Android 11 and later use the system-based V2 implementation, while earlier versions use the watchdog-based V1 implementation. See `android.anr_timeout_interval_ms` and `android.attach_anr_thread_dump` for the options specific to each implementation. On Apple platforms, `app_hang_tracking` configures the equivalent app hang detection.
+
+To learn more, see the [Application Not Responding documentation](/platforms/android/configuration/app-not-respond/).
+
+
+
+
+
+Specifies how long, in milliseconds, the main thread must stay blocked before the SDK reports an ANR.
+
+Applies only when `android.enable_anr_detection` is enabled, and only to the V1 implementation used on Android versions before 11. On Android 11 and later, the operating system determines when the application stops responding, so this value has no effect.
+
+
+
+
+
+If `true`, attaches the operating system's thread dump to the ANR event as a plain-text attachment, adding detail for investigating where the application became unresponsive.
+
+Applies only when `android.enable_anr_detection` is enabled, and only to the V2 implementation used on Android 11 and later.
+
+
+
## Hooks
These options can be used to hook the SDK in various ways to customize the reporting of events.