> ## 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 SDK — Unity

Add the following code to the entry point of your app.

```csharp theme={null}
using QonversionUnity;

private void Start()
{
    QonversionConfig config = new QonversionConfigBuilder(
            "[projectKey]",
            LaunchMode.SubscriptionManagement
        ).Build();
    Qonversion.Initialize(config);
}
```
