Skip to content
Open
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
113 changes: 0 additions & 113 deletions docs/platforms/android/configuration/manual-init.mdx

This file was deleted.

2 changes: 1 addition & 1 deletion docs/platforms/android/integrations/apollo3/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ Alternatively, you can customize the event and scrub the data yourself.

### Customize or Drop the Error Event

To customize or drop the error event, you'll need to do a [manual initialization](/platforms/android/configuration/manual-init/#manual-initialization) of the Sentry Android SDK. The captured error event can then be customized or dropped with a `BeforeSendCallback`:
To customize or drop the error event, you'll need to do a [manual initialization](/platforms/android/manual-setup/#configuration-via-sentryoptions) of the Sentry Android SDK. The captured error event can then be customized or dropped with a `BeforeSendCallback`:

```kotlin
import io.sentry.android.core.SentryAndroid
Expand Down
2 changes: 1 addition & 1 deletion docs/platforms/android/integrations/fragment/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ However, you can still override the default behaviour by adding your own instanc

### Install

To add the Fragment integration, [manually initialize](/platforms/android/configuration/manual-init/#manual-initialization) the Android SDK, then add the `sentry-android-fragment` dependency. Using Gradle:
To add the Fragment integration, [manually initialize](/platforms/android/manual-setup/#configuration-via-sentryoptions) the Android SDK, then add the `sentry-android-fragment` dependency. Using Gradle:

```groovy
implementation 'io.sentry:sentry-android:{{@inject packages.version('sentry.java.android', '5.1.0') }}'
Expand Down
4 changes: 2 additions & 2 deletions docs/platforms/android/integrations/jetpack-compose/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ This feature is disabled by default, but you can enable it the following ways.

#### Using `SentryOptions`

If you initialize the SDK [manually as mentioned here](/platforms/android/configuration/manual-init/#manual-initialization), you can enable user interactions like this:
If you initialize the SDK [manually as mentioned here](/platforms/android/manual-setup/#configuration-via-sentryoptions), you can enable user interactions like this:

```kotlin {filename:MyApplication.kt}
SentryAndroid.init(this) { options ->
Expand Down Expand Up @@ -330,7 +330,7 @@ fun Second() {

## Customize the Recorded Breadcrumb/Transaction

By default, the Navigation integration captures route arguments as additional data on breadcrumbs and transactions. In case the arguments contain any PII data, you can strip it out by way of `BeforeBreadcrumbCallback` and `EventProcessor` respectively. To do that, [manually initialize](/platforms/android/configuration/manual-init/#manual-initialization) the SDK and add the following snippet:
By default, the Navigation integration captures route arguments as additional data on breadcrumbs and transactions. In case the arguments contain any PII data, you can strip it out by way of `BeforeBreadcrumbCallback` and `EventProcessor` respectively. To do that, [manually initialize](/platforms/android/manual-setup/#configuration-via-sentryoptions) the SDK and add the following snippet:

```kotlin
import io.sentry.EventProcessor
Expand Down
2 changes: 1 addition & 1 deletion docs/platforms/android/integrations/ktor-client/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ Those events are searchable and you can set alerts on them if you use the `http.

### Customize or Drop the Error Event

To customize or drop the error event, you need to do a [manual initialization](/platforms/android/configuration/manual-init/#manual-initialization) of the Sentry Android SDK.
To customize or drop the error event, you need to do a [manual initialization](/platforms/android/manual-setup/#configuration-via-sentryoptions) of the Sentry Android SDK.

The captured error event can be customized or dropped with a `BeforeSendCallback`:

Expand Down
2 changes: 1 addition & 1 deletion docs/platforms/android/integrations/navigation/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ class HomeFragment : Fragment() {

## Customize the Recorded Breadcrumb/Transaction

By default, the Navigation integration captures route arguments as additional data on breadcrumbs and transactions. In case the arguments contain any PII data, you can strip it out by way of `BeforeBreadcrumbCallback` and `EventProcessor` respectively. To do that, [manually initialize](/platforms/android/configuration/manual-init/#manual-initialization) the SDK and add the following snippet:
By default, the Navigation integration captures route arguments as additional data on breadcrumbs and transactions. In case the arguments contain any PII data, you can strip it out by way of `BeforeBreadcrumbCallback` and `EventProcessor` respectively. To do that, [manually initialize](/platforms/android/manual-setup/#configuration-via-sentryoptions) the SDK and add the following snippet:

```kotlin
import io.sentry.EventProcessor
Expand Down
2 changes: 1 addition & 1 deletion docs/platforms/android/integrations/okhttp/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ Those events are searchable and you can set alerts on them if you use the `http.

### Customize or Drop the Error Event

To customize or drop the error event, you need to do a [manual initialization](/platforms/android/configuration/manual-init/#manual-initialization) of the Sentry Android SDK.
To customize or drop the error event, you need to do a [manual initialization](/platforms/android/manual-setup/#configuration-via-sentryoptions) of the Sentry Android SDK.

The captured error event can be customized or dropped with a `BeforeSendCallback`:

Expand Down
2 changes: 1 addition & 1 deletion docs/platforms/android/integrations/timber/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ configurations.configureEach {

### Install

To add the Timber integration, [manually initialize](/platforms/android/configuration/manual-init/#manual-initialization) the Android SDK, then add the `sentry-android-timber` dependency. Using Gradle:
To add the Timber integration, [manually initialize](/platforms/android/manual-setup/#configuration-via-sentryoptions) the Android SDK, then add the `sentry-android-timber` dependency. Using Gradle:

```groovy
implementation 'io.sentry:sentry-android:{{@inject packages.version('sentry.java.android', '4.2.0') }}'
Expand Down
Loading
Loading