> ## 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 in Analytics Mode — Flutter

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

```dart theme={null}
import 'package:qonversion_flutter/qonversion_flutter.dart';

final config = new QonversionConfigBuilder(
  '[projectKey]',
  QLaunchMode.analytics
).build();
Qonversion.initialize(config);
```
