> ## 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 - Capacitor

## 1. Initialize Qonversion SDK

```javascript theme={null}
import Qonversion, { QonversionConfigBuilder, LaunchMode } from '@qonversion/capacitor-plugin';

const config = new QonversionConfigBuilder(
  'projectKey',
  LaunchMode.SUBSCRIPTION_MANAGEMENT
).build();
Qonversion.initialize(config);
```

## 2. Initialize No-Codes SDK

```javascript theme={null}
const noCodesConfig = new NoCodesConfigBuilder('projectKey')
  .build();
NoCodes.initialize(noCodesConfig);
```

## 3. Set Listener

```javascript theme={null}
const noCodesConfig = new NoCodesConfigBuilder('projectKey')
  .setNoCodesListener(this)
  .build();

const screenConfig = new ScreenPresentationConfig(ScreenPresentationStyle.FULL_SCREEN, true);
NoCodes.getSharedInstance().setScreenPresentationConfig(screenConfig, 'yourContextKey');
```
