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.
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.
val qonversionConfig = QonversionConfig.Builder(
this,
"projectKey",
QLaunchMode.SubscriptionManagement
).build()
Qonversion.initialize(qonversionConfig)
val noCodesConfig = NoCodesConfig.Builder(this, "projectKey").build()
NoCodes.initialize(noCodesConfig)
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()