Release Checklist
Validate your ContextDecision integration before releasing to the App Store or Google Play with this checklist.
Last updated
Was this helpful?
Validate your ContextDecision integration before releasing to the App Store or Google Play with this checklist.
Last updated
Was this helpful?
Before you ship your first release with the ContextSDK, we recommend taking a few steps to validate the integration works as expected.
Add the following log right after wherever you capture the context
object:
Run your app on a physical device, not on a simulator or emulator.
Navigate to the screen where you access ContextSDK. Make sure all the requirements you've implemented in your app are met (e.g. the user has not purchased the product, the user has not seen the upsell before, etc.).
You should see the following output printed, with the numbers varying depending on the current context:
If you notice the ContextSDK version not being 5.4.0, please follow the instructions in Updating Your SDK.
Each flow should have a distinct name, even if the same flow is triggered from different parts of the app. We automatically analyze the overlap between different flows, to decide if there should be one, or more models.
Best practice: use snake_case
and group flows that lead to the same prompt using the same prefix, e.g. upsell_onboarding
, upsell_first_action
.
It is critical that you capture the context
object right before you show the upsell prompt. This guarantees that the signals are taken at the correct moment (as context can change quickly), and also allows you to start making decisions once your custom model is ready.
Similarly, you should log the outcome after the user has interacted with the upsell prompt.
Failing to follow these guidelines will likely show console warnings, such as a message indicating that youβre logging an outcome immediately after creating the context, as this approach is generally considered incorrect.
You need to ensure you always log at least one outcome for each time you access the current context:
Also, make sure both positive and negative code paths are tested before releasing your app. Forgetting to log one or the other usually invalidates the data collected and delays the training of your custom model.
We recommend logging .positive
only after the user successfully completes a purchase.
If the user dismisses the iOS payment sheet or encounters a transaction error (e.g., due to network issues), avoid logging an outcome immediately. Instead, log a new Custom Outcome Metadata and allow the user to retry (e.g., by keeping the paywall screen open after a payment error). Log the final outcome later, such as when the user either dismisses the paywall or successfully completes the purchase.
Alternatively, you can be more fine-grained with your logging and use Alternative Outcomes.
When logging outcome metadata, be sure to call context.log(β¦)
afterward. The metadata is transmitted to the server only when an outcome is logged.
Also, avoid logging multiple outcomes for the same context without updating metadata between them. For example, if a user dismisses the upsell prompt, logging a .negative
outcome repeatedly without changing metadata isnβt necessary. Update the metadata between each outcome, or log the outcome only once.