Nami Public Documentation
SDK Reference
SDK Reference
  • NAMI
    • configure
    • NamiConfiguration
    • NamiLanguageCodes
  • NamiCampaignManager
    • launch
    • allCampaigns
    • isCampaignAvailable
    • refresh
    • registerAvailableCampaignsHandler
    • NamiCampaign
    • NamiCampaignRuleType
    • LaunchCampaignError
  • NamiCustomerManager
    • CustomerJourneyState
    • isLoggedIn
    • journeyState
    • loggedInId
    • login
    • logout
    • registerAccountStateHandler
    • registerJourneyStateHandler
    • setCustomerAttribute
    • getCustomerAttribute
    • clearCustomerAttribute
    • clearAllCustomerAttributes
  • NamiEntitlementManager
    • active
    • isEntitlementActive
    • NamiEntitlement
    • refresh
    • registerActiveEntitlementsHandler
  • NamiPaywallManager
    • dismiss
    • displayedViewController
    • registerSignInHandler
    • registerCloseHandler
    • registerBuySkuHandler
    • registerDeeplinkActionHandler
    • buySkuComplete
    • NamiPurchaseSuccess
    • NamiPaywallAction
    • NamiSKUType
  • NamiPurchaseManager
    • anySkuPurchased
    • consumePurchasedSku
    • NamiPurchase
    • NamiPurchaseState
    • NamiRestorePurchasesState
    • NamiSKU
    • presentCodeRedemptionSheet
    • registerPurchasesChangedHandler
    • registerRestorePurchasesHandler
    • restorePurchases
    • skuPurchased
  • NamiMLManager
    • coreAction
    • enterCoreContent
    • exitCoreContent
Powered by GitBook
On this page
  1. NamiMLManager

exitCoreContent

Inform the SDK when a user has finished consuming content that is core to your app experience.

NamiMLManager.exitCoreContent(label: String)
NamiMLManager.exitCoreContent(label: String)
// Use version that takes List<String> (see below)
NativeModules.NamiMLManagerBridge.exitCoreContentWithLabel(String);

Arguments

  • (required) label: String that describes the nature of the content being consumed. The same string string must be used in both enterCoreContent and exitCoreContent calls.

NamiMLManager.exitCoreContent(labels: [String])
NamiMLManager.exitCoreContent(List<String> labels);
NamiMLManager.exitCoreContent(List<String> labels);

Arguments

  • (required) labels: A list of strings of different labels that describe the content that was consumed. Note the exact same list must be used in both the enterCoreContent and exitCoreContent calls to work correctly.

PreviousenterCoreContent

Last updated 1 year ago