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 Insert.pauseGuides();
call will prevent guides from being displayed onto the device. This can be altered only by calling Insert.resumeGuides();
after that.
The Insert.pauseGuides();
API call should be used together with Insert.dismissVisibleInserts();
. Using it together will call to dismiss all active guides and then pause new ones:
Insert.dismissVisibleInserts();
Insert.pauseGuides();
iOS
The API [[InsertManager sharedManager] pauseGuides];
will prevent guides from being displayed onto the device. This can be altered only by calling [[InsertManager sharedManager] resumeGuides];
after that.
The Insert.pauseGuides();
API should be called together with [[InsertManager sharedManager] dismissVisibleInserts];
. Using it together will call to dismiss all active guides and then pause new ones:
[[InsertManager sharedManager] dismissVisibleInserts];
[[InsertManager sharedManager] pauseGuides];