For the complete documentation index, see llms.txt. This page is also available as Markdown.

End Screen Loading

API reference for ending screen loading measurement in Luciq. Pass the current view controller or activity to mark the screen as loaded.

You can manually inform the Luciq SDK that screen loading has ended using the following API. You'll simply need to pass the current View Controller or Activity

APM.endScreenLoading(for viewController: self) // self here is a reference to a UIViewController
[LCQAPM endScreenLoadingForViewController: self]; // self here is a reference to a UIViewController
APM.endScreenLoading(YourActivity.class);
APM.endScreenLoading(Class<T> activityClass)
APM.endScreenLoading();

Last updated