Skip to content

Commit d65b77d

Browse files
committed
copy tweak
1 parent b0f7281 commit d65b77d

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -468,21 +468,22 @@ You can check if the adjust SDK is currently enabled by calling the function
468468

469469
### 18. Offline mode
470470

471-
You can put the adjust SDK in offline mode to prevent it from sending
472-
any information to our servers. While in offline mode, all information is saved
473-
in a file, so take care of triggering too many events while in offline mode.
474-
You can set it to offline mode, by calling `setOfflineMode` with the parameter `true`.
471+
You can put the adjust SDK in offline mode to suspend transmission to our servers,
472+
while retaining tracked data to be sent later. While in offline mode, all information is saved
473+
in a file, so be careful not to trigger too many events while in offline mode.
474+
475+
You can activate offline mode by calling `setOfflineMode` with the parameter `true`.
475476

476477
```java
477478
Adjust.setOfflineMode(true);
478479
```
479480

481+
Conversely, you can deactivate offline mode by calling `setOfflineMode` with `false`.
480482
When the adjust SDK is put back in online mode, all saved information is send to our servers
481-
with the correct time information. To put it back in online mode, just call
482-
`setOfflineMode` with the parameter `false`.
483+
with the correct time information.
483484

484485
Unlike disabling tracking, this setting is *not remembered*
485-
bettween sessions. This means that the SDK is in online mode whenever is started,
486+
bettween sessions. This means that the SDK is in online mode whenever it is started,
486487
even if the app was terminated in offline mode.
487488

488489
[dashboard]: http://adjust.com

0 commit comments

Comments
 (0)