@@ -468,21 +468,22 @@ You can check if the adjust SDK is currently enabled by calling the function
468
468
469
469
### 18. Offline mode
470
470
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 ` .
475
476
476
477
``` java
477
478
Adjust . setOfflineMode(true );
478
479
```
479
480
481
+ Conversely, you can deactivate offline mode by calling ` setOfflineMode ` with ` false ` .
480
482
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.
483
484
484
485
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,
486
487
even if the app was terminated in offline mode.
487
488
488
489
[ dashboard ] : http://adjust.com
0 commit comments