# Welcome Message

### Setting the Welcome Message Mode

By default, a welcome message that explains how to show Luciq will be shown to your app users within 10 seconds of starting their first session after the SDK is integrated. The welcome mode can be set to live, beta, or disabled using the method below. The default welcome mode is set to live.

The popups that appear follow the color theme and primary color that you set for the SDK.

You can also edit the content of the message using the method and keys found in the [Locale](/android/set-up-luciq-for-android/sdk-customizations/sdk-locale.md) page.

{% tabs %}
{% tab title="Kotlin" %}
{% code overflow="wrap" %}

```kotlin
Luciq.setWelcomeMessageState(WelcomeMessage.State.BETA) // For beta testers
Luciq.setWelcomeMessageState(WelcomeMessage.State.LIVE) // For live users
Luciq.setWelcomeMessageState(WelcomeMessage.State.DISABLED) // Disable welcome message
```

{% endcode %}
{% endtab %}

{% tab title="Java" %}
{% code overflow="wrap" %}

```java
Luciq.setWelcomeMessageState(WelcomeMessage.State.BETA); // For beta testers
Luciq.setWelcomeMessageState(WelcomeMessage.State.LIVE); // For live users
Luciq.setWelcomeMessageState(WelcomeMessage.State.DISABLED); // Disable welcome message
```

{% endcode %}
{% endtab %}
{% endtabs %}

### Showing the Welcome Message Manually

Instead of showing the welcome message automatically, you can manually show the welcome message in either live or beta mode using the following method.

{% tabs %}
{% tab title="Kotlin" %}
{% code overflow="wrap" %}

```kotlin
Luciq.showWelcomeMessage(WelcomeMessage.State.BETA) // For beta testers
Luciq.showWelcomeMessage(WelcomeMessage.State.LIVE) // For live users
```

{% endcode %}
{% endtab %}

{% tab title="Java" %}
{% code overflow="wrap" %}

```java
Luciq.showWelcomeMessage(WelcomeMessage.State.BETA); // For beta testers
Luciq.showWelcomeMessage(WelcomeMessage.State.LIVE); // For live users
```

{% endcode %}
{% endtab %}
{% endtabs %}

> 📘 Invocation Method Set to None?
>
> If you're invocation method is set to "none", the welcome message will not appear to your users.

{% hint style="info" %}

#### Invocation Method Set to None?

If you're [invocation method](/android/set-up-luciq-for-android/set-up-bug-reporting/showing-luciq.md) is set to "none", the welcome message will not appear to your users.
{% endhint %}

### Live Welcome Message

This mode is primarily aimed at users of your production builds, or live apps.

A single popup appears to your users with instructions on how to invoke Luciq depending on the invocation method you're using.

<figure><img src="/files/fgARR0vCZ3wvLJm3v7S8" alt=""><figcaption><p>Examples of the welcome message that appears to users in live apps depending on the invocation method set.</p></figcaption></figure>

### Beta Welcome Message

This mode is primarily aimed at beta testers of your development builds, or beta apps.

A three-step on-boarding flow appears to your testers. First, your testers see a welcome message customized for beta testers. The second screen explains how to show Luciq depending on the invocation method you're using. The third and last screen reminds your testers to use the latest version of your application in order to access all your latest fixes and features.

<figure><img src="/files/u0BqTJr5TOQWV0TTeXng" alt=""><figcaption><p><em>An example of the three-step on-boarding flow that appears to users in beta apps</em></p></figcaption></figure>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.luciq.ai/android/set-up-luciq-for-android/sdk-customizations/welcome-message.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
