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.
import Qonversion, { QonversionConfigBuilder, LaunchMode } from '@qonversion/capacitor-plugin';
const config = new QonversionConfigBuilder(
'projectKey',
LaunchMode.SUBSCRIPTION_MANAGEMENT
).build();
Qonversion.initialize(config);
const noCodesConfig = new NoCodesConfigBuilder('projectKey')
.build();
NoCodes.initialize(noCodesConfig);
const noCodesConfig = new NoCodesConfigBuilder('projectKey')
.setNoCodesListener(this)
.build();
const screenConfig = new ScreenPresentationConfig(ScreenPresentationStyle.FULL_SCREEN, true);
NoCodes.getSharedInstance().setScreenPresentationConfig(screenConfig, 'yourContextKey');