-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,7 @@ This is the Cocos2d-x SDK of Adjust™. You can read more about Adjust™ at [ad | |
* [Disable tracking](#disable-tracking) | ||
* [Offline mode](#offline-mode) | ||
* [Event buffering](#event-buffering) | ||
* [GDPR right to be forgotten](#gdpr-forget-me) | ||
* [SDK signature](#sdk-signature) | ||
* [Background tracking](#background-tracking) | ||
* [Device IDs](#device-ids) | ||
|
@@ -734,6 +735,16 @@ bool AppDelegate::applicationDidFinishLaunching() { | |
|
||
If nothing is set here, event buffering is **disabled by default**. | ||
|
||
### <a id="gdpr-forget-me"></a>GDPR right to be forgotten | ||
|
||
In accordance with article 17 of the EU's General Data Protection Regulation (GDPR), you can notify Adjust when a user has exercised their right to be forgotten. Calling the following method will instruct the Adjust SDK to communicate the user's choice to be forgotten to the Adjust backend: | ||
|
||
```cpp | ||
Adjust2dx::gdprForgetMe(); | ||
``` | ||
|
||
Upon receiving this information, Adjust will erase the user's data and the Adjust SDK will stop tracking the user. No requests from this device will be sent to Adjust in the future. | ||
|
||
### <a id="sdk-signature"></a>SDK signature | ||
|
||
An account manager must activate the Adjust SDK signature. Contact Adjust support ([email protected]) if you are interested in using this feature. | ||
|