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

Managing Sounds

API reference for managing notification sounds in Luciq. Enable or disable the in-app, system notification, and conversation sounds.

There are different types of sounds that play when different events occur. These sounds can all be disabled or enabled based on need.

In-App Notification Sound

Replies.setInAppNotificationEnabled(false);
Replies.setInAppNotificationEnabled(false)
Replies.setInAppNotificationSound(false);
Replies.setInAppNotificationSound(false);

System Notification Sound

Replies.setSystemReplyNotificationSoundEnabled(true);
Replies.setSystemReplyNotificationSoundEnabled(true)

Conversation Sound

Replies.setShouldPlayConversationSounds(false);
Replies.setShouldPlayConversationSounds(false)

Last updated