Skip to content

Commit

Permalink
Merge pull request #317 from adjust/sdk-signature-added
Browse files Browse the repository at this point in the history
SDK signature added
  • Loading branch information
uerceg authored Dec 19, 2017
2 parents 1fab8d1 + ffea98e commit db7c525
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ If your app is an app which uses web views you would like to use adjust tracking
* [Disable tracking](#disable-tracking)
* [Offline mode](#offline-mode)
* [Event buffering](#event-buffering)
* [SDK signature](#sdk-signature)
* [Background tracking](#background-tracking)
* [Device IDs](#device-ids)
* [iOS Advertising Identifier](#di-idfa)
Expand Down Expand Up @@ -511,6 +512,18 @@ If your app makes heavy use of event tracking, you might want to delay some HTTP
If nothing is set, event buffering is **disabled by default**.
### <a id="sdk-signature"></a> SDK signature
The Adjust SDK signature is enabled on a client-by-client basis. If you are interested in using this feature, please contact your account manager.
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.
An App Secret is set by calling `setAppSecret` on your `AdjustConfig` instance:
```objc
[adjustConfig setAppSecret:secretId info1:info1 info2:info2 info3:info3 info4:info4];
```

### <a id="background-tracking"></a>Background tracking

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:
Expand Down

0 comments on commit db7c525

Please sign in to comment.