registerBuySkuHandler
NamiPaywallManager.registerBuySkuHandler { sku in
print("Start the purchase flow for App Store product: \(sku.storeId)")
}NamiPaywallManager.registerBuySkuHandler { paywall, sku ->
Log.d(LOG_TAG, "Start the purchase flow for Google Play/Amazon Appstore product: $skuRefId")
}// Coming soonNamiPaywallManager.registerBuySkuHandler((sku) => {
// Start your purchase flow
console.log(
'buy sku handler - start purchase flow for sku:',
sku.skuId,
);
}NamiPaywallManager.RegisterBuySkuHandler(buySkuCallback);Registering with NamiPaywallManager.registerBuySkuHandler will provide a callback from a Nami paywall when the user has selected a sku and asked for the purchase flow to start.
It is you're responsible to listen to this handler's callback to start the purchase with the provided sku.
Once the purchase is successful, indicate it is complete by calling buySkuComplete to close the paywall.
Last updated