Enable or disable Localytics Push

You can disable/enable Localytics Push programmatically by making a library call to Localytics.setPushDisabled(boolean disablePush).

Disable Push

Localytics.setPushDisabled(true);

Enable Push

Localytics.setPushDisabled(false);

For Unity

You can disable/enable Localytics Push programmatically by setting Localytics.PushDisabled.

Disable Push

Localytics.PushDisabled = true;

Enable Push

Localytics.PushDisabled = false;