Skip to content

Commit

Permalink
chore(Android): Update docs to match actual SDK behavior (#12954)
Browse files Browse the repository at this point in the history
* chore(Android): Update docs to match actual SDK behavior

* Fix typo

* Update Java docs
  • Loading branch information
markushi authored Mar 7, 2025
1 parent 4fca665 commit 8442e84
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions docs/platforms/android/configuration/options.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -110,19 +110,19 @@ When set to `true`, the SDK will send session events to Sentry. This is supporte

</ConfigKey>

<ConfigKey name="in-app-include">
<ConfigKey name="in-app-includes">

A list of string prefixes of module names that belong to the app. This option takes precedence over `in-app-exclude`.
A list of string prefixes of module names that belong to the app. This option takes precedence over `in-app-excludes`.

Sentry differentiates stack frames that are directly related to your application ("in application") from stack frames that come from other packages such as the standard library, frameworks, or other dependencies. The application package is automatically marked as `inApp`. The difference is visible in [sentry.io](https://sentry.io), where only the "in application" frames are displayed by default.

</ConfigKey>

<ConfigKey name="in-app-exclude">
<ConfigKey name="in-app-excludes">

A list of string prefixes of module names that do not belong to the app, but rather to third-party packages. Modules considered not part of the app will be hidden from stack traces by default.

This option can be overridden using <PlatformIdentifier name="in-app-include" />.
This option can be overridden using <PlatformIdentifier name="in-app-includes" />.

</ConfigKey>

Expand Down
8 changes: 4 additions & 4 deletions docs/platforms/java/common/configuration/options.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -112,19 +112,19 @@ Most SDKs will attempt to auto-discover this value.

</ConfigKey>

<ConfigKey name="in-app-include">
<ConfigKey name="in-app-includes">

A list of string prefixes of module names that belong to the app. This option takes precedence over `in-app-exclude`.
A list of string prefixes of module names that belong to the app. This option takes precedence over `in-app-excludes`.

Sentry differentiates stack frames that are directly related to your application ("in application") from stack frames that come from other packages such as the standard library, frameworks, or other dependencies. The application package is automatically marked as `inApp`. The difference is visible in [sentry.io](https://sentry.io), where only the "in application" frames are displayed by default.

</ConfigKey>

<ConfigKey name="in-app-exclude">
<ConfigKey name="in-app-excludes">

A list of string prefixes of module names that do not belong to the app, but rather to third-party packages. Modules considered not part of the app will be hidden from stack traces by default.

This option can be overridden using <PlatformIdentifier name="in-app-include" />.
This option can be overridden using <PlatformIdentifier name="in-app-includes" />.

</ConfigKey>

Expand Down

0 comments on commit 8442e84

Please sign in to comment.