Skip to content

Commit 0242f85

Browse files
authored
Merge pull request #308 from adjust/referrer-added
SDK signature added
2 parents b07c642 + 14e870e commit 0242f85

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ our [Android web views SDK guide](doc/english/web_views.md).
3939
* [Disable tracking](#disable-tracking)
4040
* [Offline mode](#offline-mode)
4141
* [Event buffering](#event-buffering)
42+
* [SDK signature](#sdk-signature)
4243
* [Background tracking](#background-tracking)
4344
* [Device IDs](#device-ids)
4445
* [Google Play Services advertising identifier](#di-gps-adid)
@@ -679,6 +680,22 @@ config.setEventBufferingEnabled(true);
679680
Adjust.onCreate(config);
680681
```
681682

683+
### <a id="sdk-signature"></a>SDK signature
684+
685+
An account manager must activate the Adjust SDK signature. Contact Adjust support ([email protected]) if you are interested in using this feature.
686+
687+
If the SDK signature has already been enabled on your account and you have access to App Secrets in your Adjust Dashboard, please use the method below to integrate the SDK signature into your app.
688+
689+
An App Secret is set by calling `setAppSecret` on your `AdjustConfig` instance:
690+
691+
```java
692+
AdjustConfig config = new AdjustConfig(this, appToken, environment);
693+
694+
config.setAppSecret(secretId, info1, info2, info3, info4);
695+
696+
Adjust.onCreate(config);
697+
```
698+
682699
### <a id="background-tracking"></a>Background tracking
683700

684701
The default behaviour of the Adjust SDK is to pause sending HTTP requests while the app is in the background. You can change this in your `AdjustConfig` instance:

0 commit comments

Comments
 (0)