Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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