Skip to content

Commit 9fe34b1

Browse files
authored
Update README.md
1 parent 844e572 commit 9fe34b1

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +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)
42+
* [SDK signature](#sdk-signature)
4343
* [Background tracking](#background-tracking)
4444
* [Device IDs](#device-ids)
4545
* [Google Play Services advertising identifier](#di-gps-adid)
@@ -680,7 +680,7 @@ config.setEventBufferingEnabled(true);
680680
Adjust.onCreate(config);
681681
```
682682

683-
### <a id="sdk-signature"></a>SDK Signature
683+
### <a id="sdk-signature"></a>SDK signature
684684

685685
An account manager must activate the Adjust SDK Signature. Contact Adjust support ([email protected]) if you are interested in using this feature.
686686

@@ -689,7 +689,11 @@ If the SDK Signature has already been enabled on your account and you have acces
689689
An App Secret is set by calling `setAppSecret` on your `AdjustConfig` instance:
690690

691691
```java
692-
[adjustConfig setAppSecret:secretId info1:info1 info2:info2 info3:info3 info4:info4];
692+
AdjustConfig config = new AdjustConfig(this, appToken, environment);
693+
694+
config.setAppSecret(secretId, info1, info2, info3, info4);
695+
696+
Adjust.onCreate(config);
693697
```
694698

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

0 commit comments

Comments
 (0)