1. Initialize Qonversion SDK
Copy
val qonversionConfig = QonversionConfig.Builder(
this,
"projectKey",
QLaunchMode.SubscriptionManagement
).build()
Qonversion.initialize(qonversionConfig)
2. Initialize No-Codes SDK
Copy
val noCodesConfig = NoCodesConfig.Builder(this, "projectKey").build()
NoCodes.initialize(noCodesConfig)
3. Set Delegates
Copy
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()