-
Notifications
You must be signed in to change notification settings - Fork 43
Background Tracking
Obaied edited this page Nov 2, 2016
·
2 revisions
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 by calling setSendInBackground
method:
var adjustConfig = new AdjustConfig(appToken, environment);
adjustConfig.setSendInBackground(true);
Adjust.create(adjustConfig);
If nothing is set, sending in background is disabled by default.
Basic Integration
Additional Features