Skip to content

Commit

Permalink
Add initial structural changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sporiff committed Feb 21, 2024
1 parent 5e80ee0 commit 5872d07
Show file tree
Hide file tree
Showing 12 changed files with 737 additions and 286 deletions.
513 changes: 513 additions & 0 deletions src/content/docs/sdk/android/configuration.mdx

Large diffs are not rendered by default.

20 changes: 0 additions & 20 deletions src/content/docs/sdk/android/configuration/background.mdx

This file was deleted.

30 changes: 0 additions & 30 deletions src/content/docs/sdk/android/configuration/delay.mdx

This file was deleted.

28 changes: 0 additions & 28 deletions src/content/docs/sdk/android/configuration/disable.mdx

This file was deleted.

40 changes: 0 additions & 40 deletions src/content/docs/sdk/android/configuration/external-device-id.mdx

This file was deleted.

9 changes: 0 additions & 9 deletions src/content/docs/sdk/android/configuration/index.mdx

This file was deleted.

28 changes: 0 additions & 28 deletions src/content/docs/sdk/android/configuration/log-level.mdx

This file was deleted.

94 changes: 0 additions & 94 deletions src/content/docs/sdk/android/configuration/preinstalled.mdx

This file was deleted.

28 changes: 0 additions & 28 deletions src/content/docs/sdk/android/configuration/push-tokens.mdx

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Set up deep linking
description: Configure the SDK to use deep links.
slug: en/sdk/android/configuration/deep-links
slug: en/sdk/android/features/deep-links
---

import SetOnDeeplinkResponseListenerSig from "@android-signatures/ADJConfig/setOnDeeplinkResponseListener.mdx"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
---
title: Set up privacy features
title: Privacy features
description: Configure features that you can use to handle user privacy in your app.
slug: en/sdk/android/configuration/privacy
slug: en/sdk/android/features/privacy
---

import GdprForgetMe from "@android-examples/Adjust/gdprForgetMe.mdx";
import GdprForgetMeSig from "@android-signatures/Adjust/gdprForgetMe.mdx";
import AdjustThirdPartySharingIsEnabledFalse from "@android-examples/ADJThirdPartySharing/adjustThirdPartySharingIsEnabledFalse.mdx";
import AdjustThirdPartySharingIsEnabledTrue from "@android-examples/ADJThirdPartySharing/adjustThirdPartySharingIsEnabledTrue.mdx";
import ConstructorSig from "@android-signatures/ADJThirdPartySharing/constructor.mdx";
Expand All @@ -27,13 +25,41 @@ import SetPlayStoreKidsAppEnabled from "@android-examples/ADJConfig/setPlayStore

The Adjust SDK contains features that you can use to handle user privacy in your app.

## GDPR right to be forgotten
## Send right to be forgotten request

Article 17 of the European Union's GDPR (General Data Protection Regulation) grants users the right to be forgotten. When Adjust's servers receive an RTBF (Right to be Forgotten) request, Adjust erases the user's data. The SDK also stops sending requests from the device for the app in question.
```java title="Method signature"
public static void gdprForgetMe(final Context context)
```

Article 17 of the European Union's General Data Protection Regulation (GDPR) grants users the right to be forgotten. When Adjust's servers receive a Right to be Forgotten (RTBF) request, Adjust erases the user's data. The SDK also stops sending requests from the device for the app in question.

You can send the user's <Abbr>RTBF (Right to be forgotten)</Abbr> request to Adjust by calling the `gdprForgetMe` method.

<Tabs>
<Tab title="Kotlin" sync="kotlin">

```kotlin
Adjust.gdprForgetMe()
```

</Tab>

You can send the user's RTBF request to Adjust by calling the `gdprForgetMe` method.
<Tab title="Java" sync="java" >

<GdprForgetMe />
```java
Adjust.gdprForgetMe();
```

</Tab>

<Tab title="Javascript" sync="js" >

```js
Adjust.gdprForgetMe();
```

</Tab>
</Tabs>

## Third-party sharing for specific users

Expand Down
Loading

0 comments on commit 5872d07

Please sign in to comment.