Overview
You can prevent guides from being displayed through an API call. This feature allows you to better control the usage of Pendo’s SDK.
Android
The API Pendo.pauseGuides();
call will prevent guides from being displayed onto the device. This can be altered only by calling Pendo.resumeGuides();
after that.
The Pendo.pauseGuides();
API call should be used together with Pendo.dismissVisibleInserts();
. Using it together will call to dismiss all active guides and then pause new ones:
Pendo.dismissVisibleInserts();
Pendo.pauseGuides();
iOS
The API [[PendoManager sharedManager] pauseGuides];
will prevent guides from being displayed onto the device. This can be altered only by calling [[PendoManager sharedManager] resumeGuides];
after that.
The Pendo.pauseGuides();
API should be called together with [[PendoManager sharedManager] dismissVisibleInserts];
. Using it together will call to dismiss all active guides and then pause new ones:
[[PendoManager sharedManager] dismissVisibleInserts];
[[PendoManager sharedManager] pauseGuides];