Skip to content

Commit b402572

Browse files
committed
Merge pull request #67 from adjust/proofs
Update readme
2 parents d1bb61c + 5bbf043 commit b402572

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

README.md

+4-7
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,6 @@ adjustConfig.setLogDelegate(msg => Debug.Log(msg));
5050
Adjust.start (adjustConfig);
5151
```
5252

53-
You can increase or decrease the amount of logs you see in tests by setting the
54-
second argument of the `SetupLogging` method, `logLevel`, with one of the following values:
55-
5653
Depending on whether or not you build your app for testing or for production
5754
you must change `Environment` with one of these values:
5855

@@ -254,7 +251,7 @@ Adjust.trackEvent (adjustEvent);
254251

255252
You can read more about special partners and these integrations in our [guide to special partners.][special-partners]
256253

257-
### 9. Receive attribution change callback
254+
### 10. Receive attribution change callback
258255

259256
You can register a callback to be notified of tracker attribution changes. Due to the different sources considered for attribution, this information can not by provided synchronously. Follow these steps to implement the optional callback in your application:
260257

@@ -305,7 +302,7 @@ public class ExampleGUI : MonoBehaviour {
305302
}
306303
```
307304

308-
### 10. Disable tracking
305+
### 11. Disable tracking
309306

310307
You can disable the adjust SDK from tracking by invoking the method `setEnabled`
311308
with the enabled parameter as `false`. This setting is remembered between sessions, but it can only
@@ -318,7 +315,7 @@ Adjust.setEnabled(false);
318315
You can verify if the adjust SDK is currently active with the method `isEnabled`. It is always possible
319316
to activate the adjust SDK by invoking `setEnabled` with the `enabled` parameter set to `true`.
320317

321-
### 11. Offline mode
318+
### 12. Offline mode
322319

323320
You can put the adjust SDK in offline mode to suspend transmission to our servers,
324321
while retaining tracked data to be sent later. While in offline mode, all information is saved
@@ -338,7 +335,7 @@ Unlike disabling tracking, this setting is *not remembered*
338335
bettween sessions. This means that the SDK is in online mode whenever it is started,
339336
even if the app was terminated in offline mode.
340337

341-
### 12. Device IDS
338+
### 13. Device IDS
342339

343340
Certain services (such as Google Analytics) require you to coordinate Device and Client IDs in order to prevent duplicate reporting.
344341

0 commit comments

Comments
 (0)