> ## Documentation Index
> Fetch the complete documentation index at: https://documentation.qonversion.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Initialize SDKs - Android

## 1. Initialize Qonversion SDK

```kotlin theme={null}
val qonversionConfig = QonversionConfig.Builder(
    this,
    "projectKey",
    QLaunchMode.SubscriptionManagement
).build()
Qonversion.initialize(qonversionConfig)
```

## 2. Initialize No-Codes SDK

```kotlin theme={null}
val noCodesConfig = NoCodesConfig.Builder(this, "projectKey").build()
NoCodes.initialize(noCodesConfig)
```

## 3. Set Delegates

```kotlin theme={null}
NoCodes.shared.setDelegate(this)
NoCodes.shared.setScreenCustomizationDelegate(this)

// Delegates can be also passed via the initialization through the configuration:
val noCodesConfig = NoCodesConfig.Builder(this, "projectKey")
  .setDelegate(this)
  .setScreenCustomizationDelegate(this)
  .build()
```
