Building Luciq

You can use these methods to build Luciq in your project so that you can invoke it. This method takes a string token and any number of invocation events as an argument. This method will require that you have Luciq already installed. For more information on how to fully install and integrate Luciq, please refer to the relevant documentation sections here:

Luciq.start(withToken: "YOUR-TOKEN-HERE", invocationEvents: [.shake, .screenshot]);

Invocation Event Parameters:

//No Trigger
.none
//Shake
.shake
//Screenshot
.screenshot
//Two Finger Swipe Left
.twoFingersSwipeLeft
//Right Edge Pan
.rightEdgePan
//Floating Button
.floatingButton

Last updated